Skip to content

Commit

Permalink
feat(ci): Enable grouping of dependabot PRs (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic authored Jan 23, 2024
1 parent fb5c3dc commit 997d01f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,36 @@ updates:
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "07:15"
timezone: "Etc/UTC"
groups:
# Group name will be used in PR titles and branch names
cargo-dependencies:
patterns:
- "*" # match all dependencies; risk: this may open a very large PR!
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "07:15"
timezone: "Etc/UTC"
groups:
# Group name will be used in PR titles and branch names
python-dependencies:
patterns:
- "*" # match all dependencies; risk: this may open a very large PR!
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
day: "monday"
time: "07:15"
timezone: "Etc/UTC"
groups:
# Group name will be used in PR titles and branch names
github-actions-dependencies:
patterns:
- "*" # match all dependencies; risk: this may open a very large PR!

0 comments on commit 997d01f

Please sign in to comment.