Skip to content

Commit

Permalink
chore: update dependabot configuration to group gradle and github act…
Browse files Browse the repository at this point in the history
…ions updates (#1188)
  • Loading branch information
hpmellema authored Mar 13, 2024
1 parent 9b911fb commit a489419
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,41 @@ updates:
- package-ecosystem: "gradle"
# Look for `build.gradle.kts` file in the `root` directory
directory: "/"
# Check for updates every day (weekdays)
# Check for updates every wednesday
schedule:
interval: "weekly"
open-pull-requests-limit: 5
day: "wednesday"
groups:
test-deps:
patterns:
- "org.junit.jupiter:*"
- "org.hamcrest:*"
# Ignore major version updates
update-types:
- "minor"
- "patch"
gradle-deps:
# Ignore major version updates
update-types:
- "minor"
- "patch"
open-pull-requests-limit: 10
- package-ecosystem: "npm"
# Look for `yarn.lock` file in the `root` directory
directory: "/"
# Check for updates every wednesday
schedule:
interval: "weekly"
day: "wednesday"
- package-ecosystem: "github-actions"
directory: "/"
# Check for updates every wednesday
schedule:
interval: "weekly"
day: "wednesday"
groups:
github:
# Ignore major version updates
update-types:
- "minor"
- "patch"

0 comments on commit a489419

Please sign in to comment.