Skip to content

Commit afbb0f9

Browse files
authored
Monitor github-actions with dependabot (GH 210-212) (#86)
Add dependabot for gh-actions monitoring to both the repo and template. Conforms to Scientific Python GH 210-212 https://learn.scientific-python.org/development/guides/gha-basic/#updating
1 parent 1d3cfde commit afbb0f9

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

template/.github/{% if install_dependabot %}dependabot.yml{% endif %}.jinja

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,23 @@
44
{% raw %}
55
version: 2
66
updates:
7-
- package-ecosystem: pip
8-
directory: "/"
9-
schedule:
10-
interval: monthly
11-
groups:
12-
python-packages:
13-
patterns:
14-
- "*"
7+
# Monitor pip dependencies
8+
- package-ecosystem: pip
9+
directory: "/"
10+
schedule:
11+
interval: monthly
12+
groups:
13+
python-packages:
14+
patterns:
15+
- "*"
16+
17+
# Monitor GitHub Actions and propose updates for security and maintenance
18+
- package-ecosystem: github-actions
19+
directory: "/"
20+
schedule:
21+
interval: monthly
22+
groups:
23+
github-actions:
24+
patterns:
25+
- "*"
1526
{% endraw %}

0 commit comments

Comments
 (0)