Browse Source

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 4 years ago
parent
commit
1982f607e8
1 changed files with 9 additions and 0 deletions
  1. 9 0
      .github/dependabot.yml

+ 9 - 0
.github/dependabot.yml

@@ -0,0 +1,9 @@
+version: 2
+updates:
+  - package-ecosystem: github-actions
+    directory: /
+    schedule:
+      interval: weekly
+    labels:
+      - "no changelog"
+      - "area/ci"