Skip to content

Commit

Permalink
A more sane dependabot config
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed May 3, 2024
1 parent 2533ff0 commit a6f61f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Expand Up @@ -4,9 +4,15 @@ updates:
directory: "/"
open-pull-requests-limit: 50
target-branch: "1.1.x"
commit-message:
prefix: "[1.1.x] "
schedule:
interval: "daily"
ignore:
# Do not upgrade major versions of dependencies
- dependency-name: "*"
update-types: [ "version-update:semver-major" ]
# Restrict updates in this branch to jetty in the 1.1.x space
- dependency-name: "org.eclipse.jetty:*"
versions: [ ">=10.0.0" ]
- dependency-name: "org.springframework:*"
Expand All @@ -18,9 +24,15 @@ updates:
directory: "/"
open-pull-requests-limit: 50
target-branch: "2.0.x"
commit-message:
prefix: "[2.0.x] "
schedule:
interval: "daily"
ignore:
# Do not upgrade major versions of dependencies
- dependency-name: "*"
update-types: [ "version-update:semver-major" ]
# Restrict updates in this branch to jetty in the 2.0.x space
- dependency-name: "org.eclipse.jetty:*"
versions: [ ">=11.0.0" ]
- dependency-name: "org.springframework:*"
Expand All @@ -30,8 +42,14 @@ updates:
directory: "/"
open-pull-requests-limit: 50
target-branch: "4.0.x"
commit-message:
prefix: "[4.0.x] "
schedule:
interval: "daily"
ignore:
# Do not upgrade major versions of dependencies
- dependency-name: "*"
update-types: [ "version-update:semver-major" ]

- package-ecosystem: "github-actions"
directory: "/"
Expand Down

0 comments on commit a6f61f4

Please sign in to comment.