diff options
| author | cornmander <[email protected]> | 2025-08-20 00:02:02 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-20 04:02:02 +0000 |
| commit | 179f1414daf9058a05d38a170c0d36ca9f2b8547 (patch) | |
| tree | 5091d05b9e26cf80f9da103c2fd22d49f44fb937 | |
| parent | e5f4d25f5e75e7991d8238a4dcbb4f5b5e31914d (diff) | |
feat: add dependabot configuration (#6604)
| -rw-r--r-- | .github/dependabot.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..69a4c64d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,33 @@ +# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'daily' + target-branch: 'main' + commit-message: + prefix: 'chore(deps)' + include: 'scope' + reviewers: + - 'google-gemini/gemini-cli-askmode-approvers' + groups: + # Group all non-major updates together. + # This is to reduce the number of PRs that need to be reviewed. + # Major updates will still be created as separate PRs. + npm-minor-patch: + applies-to: 'version-updates' + update-types: + - 'minor' + - 'patch' + + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'daily' + target-branch: 'main' + commit-message: + prefix: 'chore(deps)' + include: 'scope' + reviewers: + - 'google-gemini/gemini-cli-askmode-approvers' |
