Add dependabot config to check for updates for GHA workflows. (#10342)
This will automatically create PRs to update any GitHub Actions we are using when new versions are published. It is set to check weekly, defaults to limiting such PRs to 3 at a time, and will lable them apprpriately with ‘no changelog’ and ‘area/ci’. This is intended to reduce the manual overhead of maintaining our CI.
Austin S. Hemmelgarn committed
Jan 4, 2021 at 07:10 UTC
1982f607e85c74838478804fd80c16bbb1c8c073
1 file changed
+9
.github/dependabot.yml
new
+9
@@ -0,0 +1,9 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: github-actions
4
+ directory: /
5
+ schedule:
6
+ interval: weekly
7
+ labels:
8
+ - "no changelog"
9
+ - "area/ci"