Skip to content

Commit

Permalink
chore(ci): reduce dependabot spam by splitting out updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Oct 9, 2024
1 parent 2af1424 commit 93f23a1
Showing 1 changed file with 36 additions and 6 deletions.
42 changes: 36 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,71 @@
version: 2
updates:
# Rollkit specific updates
# Trigger daily, group minor and patch updates
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
allow:
- dependency-name: "rollkit/*"
labels:
- T:dependencies
# Group all patch updates into a single PR
groups:
patch-updates:
applies-to: version-updates
update-types:
- "patch"
- "minor"
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
allow:
- dependency-name: "github.com/rollkit/*"
labels:
- T:dependencies
# Group all patch updates into a single PR
groups:
patch-updates:
applies-to: version-updates
update-types:
- "patch"
- "minor"
# All other dependencies
# Trigger weekly, group patch updates
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
labels:
- T:dependencies
groups:
patch-updates:
applies-to: version-updates
update-types:
- "patch"
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
labels:
- T:dependencies
groups:
patch-updates:
applies-to: version-updates
update-types:
- "patch"
- package-ecosystem: docker
directory: "/"
schedule:
interval: daily
interval: weekly
open-pull-requests-limit: 10
labels:
- T:dependencies
# Group all patch updates into a single PR
groups:
patch-updates:
applies-to: version-updates
update-types:
- "minor"
- "patch"

0 comments on commit 93f23a1

Please sign in to comment.