From 408351b5006c062bfd0ca36e7a750edbb7c751a3 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Mon, 24 Apr 2023 14:11:16 -0600 Subject: [PATCH] CI: Add dependabot config for GitHub Actions This should help keep GitHub Actions versions up-to-date. --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9c02663 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 + +updates: + # Update GitHub Actions versions in workflows + - package-ecosystem: "github-actions" + # Workflow files stored in the + # default location of `.github/workflows` + directory: "/" + schedule: + interval: "weekly" + allow: + - dependency-type: all + open-pull-requests-limit: 10 + pull-request-branch-name: + separator: "-" + commit-message: + prefix: "CI: " + include: "scope"