Skip to content

Commit

Permalink
chore(ci): add commit message config for dependabot (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey authored Oct 21, 2024
1 parent 7eaea8a commit 40cd18d
Showing 1 changed file with 46 additions and 3 deletions.
49 changes: 46 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
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
Expand All @@ -26,3 +33,39 @@ 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
update-types:
- "patch"
commit-message:
include: "scope"
prefix: "build"

0 comments on commit 40cd18d

Please sign in to comment.