Skip to content

Commit

Permalink
chore: configure dependabot (#357)
Browse files Browse the repository at this point in the history
Run once a month, grouping non-major version changes into a single PR, as they are theoretically non-breaking changes.
  • Loading branch information
wjhsf authored Apr 12, 2024
1 parent f73b5a8 commit 7a1ee62
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
groups:
# Non-major version bumps hopefully shouldn't break anything,
# so let's group them together into a single PR!
theoretically-non-breaking:
update-types:
- "minor"
- "patch"

0 comments on commit 7a1ee62

Please sign in to comment.