Skip to content

Commit c71af83

Browse files
Update dependabot to run on main-lts
1 parent 1dd9318 commit c71af83

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

.github/dependabot.yml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,35 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
3+
# Maven updates for main branch
84
- package-ecosystem: "maven"
95
directory: "/"
106
schedule:
117
interval: "daily"
8+
target-branch: "main"
129
ignore:
1310
- dependency-name: "org.apache.maven.plugins:maven-compiler-plugin"
11+
12+
# Maven updates for main-lts branch
13+
- package-ecosystem: "maven"
14+
directory: "/"
15+
schedule:
16+
interval: "daily"
17+
target-branch: "main-lts"
18+
ignore:
19+
- dependency-name: "org.apache.maven.plugins:maven-compiler-plugin"
20+
- dependency-name: "io.quarkus:quarkus-bom"
21+
- dependency-name: "io.quarkus.platform:quarkus-bom"
22+
23+
# GitHub Actions updates for main branch
24+
- package-ecosystem: "github-actions"
25+
directory: "/"
26+
schedule:
27+
interval: "weekly"
28+
target-branch: "main"
29+
30+
# GitHub Actions updates for main-lts branch
1431
- package-ecosystem: "github-actions"
1532
directory: "/"
1633
schedule:
17-
interval: "weekly"
34+
interval: "weekly"
35+
target-branch: "main-lts"

0 commit comments

Comments
 (0)