diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 496b7f0870f..685d2e49a92 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -70,7 +70,11 @@ jobs: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} deploy-staging: - if: contains(needs.initialize.outputs.teams, 'Writers') && (github.ref != 'refs/heads/main') + if: > + github.ref != 'refs/heads/main' && + (contains(needs.initialize.outputs.teams, 'Writers') || + github.actor == 'dependabot[bot]' || + github.actor == 'renovate[bot]') needs: [initialize] runs-on: ubuntu-latest permissions: diff --git a/package-lock.json b/package-lock.json index b1a81d5f62d..a67a7cc32fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,7 +62,7 @@ "eslint-plugin-jest": "28.5.0", "eslint-plugin-jsx-a11y": "6.8.0", "eslint-plugin-n": "17.7.0", - "eslint-plugin-notice": "0.9.10", + "eslint-plugin-notice": "1.0.0", "eslint-plugin-react": "7.34.2", "eslint-plugin-react-hooks": "4.6.2", "execa": "9.1.0", @@ -16873,13 +16873,14 @@ "dev": true }, "node_modules/eslint-plugin-notice": { - "version": "0.9.10", - "resolved": "https://registry.npmjs.org/eslint-plugin-notice/-/eslint-plugin-notice-0.9.10.tgz", - "integrity": "sha512-rF79EuqdJKu9hhTmwUkNeSvLmmq03m/NXq/NHwUENHbdJ0wtoyOjxZBhW4QCug8v5xYE6cGe3AWkGqSIe9KUbQ==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-notice/-/eslint-plugin-notice-1.0.0.tgz", + "integrity": "sha512-M3VLQMZzZpvfTZ/vy9FmClIKq5rLBbQpM0KgfLZPJPrVXpmJYeobmmb+lfJzHWdNm8PWwvw8KlafQWo2N9xx1Q==", "dev": true, + "license": "MIT", "dependencies": { "find-root": "^1.1.0", - "lodash": "^4.17.15", + "lodash": "^4.17.21", "metric-lcs": "^0.1.2" }, "peerDependencies": { @@ -52514,6 +52515,7 @@ "prop-types": "^15.5.7" }, "devDependencies": { + "@zendeskgarden/react-dropdowns": "^9.0.0-next.17", "@zendeskgarden/react-theming": "^9.0.0-next.17", "@zendeskgarden/svg-icons": "7.1.1" }, diff --git a/package.json b/package.json index d06e29a5825..91a4ea49aa3 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,7 @@ "eslint-plugin-jest": "28.5.0", "eslint-plugin-jsx-a11y": "6.8.0", "eslint-plugin-n": "17.7.0", - "eslint-plugin-notice": "0.9.10", + "eslint-plugin-notice": "1.0.0", "eslint-plugin-react": "7.34.2", "eslint-plugin-react-hooks": "4.6.2", "execa": "9.1.0",