Skip to content

Commit b94bee6

Browse files
committed
impl: initial version for dependabot
- upgrades gradle dependencies and plugins - upgrades github actions - runs weekly
1 parent 7cfd5af commit b94bee6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/dependabot.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Dependabot configuration:
2+
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
version: 2
5+
updates:
6+
# Maintain dependencies for Gradle dependencies
7+
- package-ecosystem: "gradle"
8+
directory: "/"
9+
target-branch: "main"
10+
schedule:
11+
interval: "weekly"
12+
time: "06:00"
13+
timezone: "America/Chicago"
14+
commit-message:
15+
prefix: "chore"
16+
# Maintain dependencies for GitHub Actions
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
19+
target-branch: "main"
20+
schedule:
21+
interval: "weekly"
22+
time: "06:00"
23+
timezone: "America/Chicago"
24+
commit-message:
25+
prefix: "chore"

0 commit comments

Comments
 (0)