summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2021-01-04 07:10:47 -0500
committerGitHub <noreply@github.com>2021-01-04 07:10:47 -0500
commit1982f607e85c74838478804fd80c16bbb1c8c073 (patch)
treeebceda61223196a94494495686f0474f2b146a7c /.github
parentb79b67b043cee4994e89a86e646fed9284b72cff (diff)
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.
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..b02b155d30
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,9 @@
+version: 2
+updates:
+ - package-ecosystem: github-actions
+ directory: /
+ schedule:
+ interval: weekly
+ labels:
+ - "no changelog"
+ - "area/ci"