From 65c774c2caca3ce263c1bfe41551c28c595f9cf5 Mon Sep 17 00:00:00 2001 From: Jason Kai Date: Wed, 21 Feb 2024 09:33:30 -0500 Subject: [PATCH] Add dependabot config Setup dependabot config for automatically updating github actions versions. Added a `skip_changelog` label to it in order to leave update of github actions out of the release notes. --- .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 00000000..81aa11f4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. + # (You don't need to specify `/.github/workflows` for `directory`. + # You can use `directory: "/"`.) + directory: "/" + # Run on first of each month + schedule: + interval: "monthly" + # PR label + labels: + - "skip_changelog" + # Group to submit a single PR if possible + groups: + github-actions: + patterns: + - "*" \ No newline at end of file