Skip to content

Commit

Permalink
chore(): add dependabot version bumps (#9132)
Browse files Browse the repository at this point in the history
add dependabot automated version bumps; behavior is configured as:
- group all patch version bumps into one PR
- group all minor version bumps into one PR
- open individual PRs for all major version bumps
  • Loading branch information
ryanfoxtyler authored Aug 24, 2024
1 parent e343854 commit dec2cdc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "wednesday"
time: "16:00"
rebase-strategy: "disabled"
groups:
patch:
update-types: ["patch"]
minor:
update-types: ["minor"]

- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
interval: "weekly"
day: wednesday
time: "16:00"

0 comments on commit dec2cdc

Please sign in to comment.