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 45683be commit c1099c1
Showing 1 changed file with 40 additions and 3 deletions.
43 changes: 40 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,66 @@
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"
commit-message:
include: "scope"
prefix: "build"
- 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"
commit-message:
include: "scope"
prefix: "build"
# 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"
commit-message:
include: "scope"
prefix: "build"
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
labels:
- T:dependencies
groups:
patch-updates:
applies-to: version-updates
Expand Down

0 comments on commit c1099c1

Please sign in to comment.