Skip to content

Commit 2a5c874

Browse files
committed
build(dev): enable dependabot for automatic updates
Only for GitHub actions in CI workflows. Managing Python dependencies in this project seems to be manual driven. It can be enabled (un-commented) later, if desired. I just didn't want to cause PR spam. To reduce perceivable spam, I set the "auto-check for updates" schedule to monthly. Note, dependabot will automatically close or update any outdated PRs that it opened.
1 parent 5f655b7 commit 2a5c874

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: github-actions
9+
directory: /
10+
schedule:
11+
interval: "monthly"
12+
commit-message:
13+
prefix: "chore(CI):"
14+
groups:
15+
actions:
16+
patterns:
17+
- "*"
18+
# - package-ecosystem: pip
19+
# directory: .github/
20+
# schedule:
21+
# interval: "monthly"
22+
# groups:
23+
# pip:
24+
# patterns:
25+
# - "*"

0 commit comments

Comments
 (0)