From 1982f607e85c74838478804fd80c16bbb1c8c073 Mon Sep 17 00:00:00 2001 From: "Austin S. Hemmelgarn" Date: Mon, 4 Jan 2021 07:10:47 -0500 Subject: Add dependabot config to check for updates for GHA workflows. (#10342) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml (limited to '.github') 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" -- cgit v1.2.3