Skip to content

Commit 0797497

Browse files
committed
Adds dependabot.yml
1 parent 24bc1f2 commit 0797497

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

.github/dependabot.yml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
target-branch: "main"
11+
schedule:
12+
interval: "weekly"
13+
- package-ecosystem: maven
14+
directory: /
15+
schedule:
16+
interval: daily
17+
target-branch: main
18+
# ignore:
19+
# only upgrade by minor or patch
20+
# - dependency-name: "*"
21+
# update-types:
22+
# - version-update:semver-major
23+
- package-ecosystem: maven
24+
directory: /
25+
schedule:
26+
interval: daily
27+
target-branch: 4.3.x
28+
ignore:
29+
# only upgrade by minor or patch
30+
- dependency-name: "*"
31+
update-types:
32+
- version-update:semver-major
33+
- version-update:semver-minor
34+
- package-ecosystem: maven
35+
directory: /
36+
schedule:
37+
interval: daily
38+
target-branch: 4.2.x
39+
ignore:
40+
# only upgrade by minor or patch
41+
- dependency-name: "*"
42+
update-types:
43+
- version-update:semver-major
44+
- version-update:semver-minor
45+
- package-ecosystem: maven
46+
directory: /
47+
schedule:
48+
interval: daily
49+
target-branch: 4.1.x
50+
ignore:
51+
# only upgrade by minor or patch
52+
- dependency-name: "*"
53+
update-types:
54+
- version-update:semver-major
55+
- version-update:semver-minor
56+
- package-ecosystem: npm
57+
target-branch: docs-build
58+
directory: /
59+
schedule:
60+
interval: weekly
61+
- package-ecosystem: npm
62+
target-branch: main
63+
directory: /docs
64+
schedule:
65+
interval: weekly
66+
- package-ecosystem: npm
67+
target-branch: 4.2.x
68+
directory: /docs
69+
schedule:
70+
interval: weekly
71+
- package-ecosystem: npm
72+
target-branch: 4.2.x
73+
directory: /docs
74+
schedule:
75+
interval: weekly
76+
- package-ecosystem: npm
77+
target-branch: 4.1.x
78+
directory: /docs
79+
schedule:
80+
interval: weekly

0 commit comments

Comments
 (0)