Skip to content

Commit f68d617

Browse files
authored
chore: configure daily dependency updates for maven and github actions (#593)
LGTM
1 parent e050d79 commit f68d617

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

.github/dependabot.yml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
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
2+
73
updates:
8-
- package-ecosystem: "maven" # See documentation for possible values
9-
directory: "/" # Location of package manifests
4+
- package-ecosystem: "maven"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
target-branch: "main"
9+
open-pull-requests-limit: 5
10+
ignore:
11+
- dependency-name: "*"
12+
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
13+
labels:
14+
- "dependencies"
15+
- "java"
16+
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
1019
schedule:
1120
interval: "daily"
21+
ignore:
22+
- dependency-name: "*"
23+
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
24+
labels:
25+
- "dependencies"
26+
- "github actions"

0 commit comments

Comments
 (0)