Skip to content

Commit

Permalink
Group together minor and patch npm dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Jul 12, 2023
1 parent 12aa0a6 commit f561487
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
version: 2
updates:
# Check for major npm dependency updates every day, such that we can get a
# head start on any necessary work to upgrade.
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
labels:
- Update dependencies
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-minor
- version-update:semver-patch
# Create a batched update with all minor and patch npm dependency updates once
# a week.
- package-ecosystem: npm
directory: "/"
schedule:
Expand All @@ -9,13 +24,24 @@ updates:
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-minor
- version-update:semver-patch
- version-update:semver-major
groups:
npm-minor:
patterns:
- "*"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
groups:
actions:
patterns:
- "*"
- package-ecosystem: github-actions
directory: "/.github/actions/setup-swift/" # All subdirectories outside of "/.github/workflows" must be explicitly included.
schedule:
interval: weekly
groups:
actions-setup-swift:
patterns:
- "*"

0 comments on commit f561487

Please sign in to comment.