Skip to content

Commit fd9d4d8

Browse files
author
Ryan Baxter
authored
Create dependabot.yml
1 parent dc64947 commit fd9d4d8

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.github/dependabot.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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: 3.1.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: npm
35+
target-branch: docs-build
36+
directory: /
37+
schedule:
38+
interval: weekly
39+
- package-ecosystem: npm
40+
target-branch: main
41+
directory: /docs
42+
schedule:
43+
interval: weekly
44+
- package-ecosystem: npm
45+
target-branch: 3.1.x
46+
directory: /docs
47+
schedule:
48+
interval: weekly

0 commit comments

Comments
 (0)