From 982fda9db72d573122a8c624fac39efbcc1e9ed7 Mon Sep 17 00:00:00 2001 From: Dan Royer Date: Thu, 31 Oct 2024 19:49:03 -0700 Subject: [PATCH] Create dependabot.yml --- .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 000000000..4027d92ab --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +# .github/dependabot.yml + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" # Location in the repository where dependabot should check for updates + schedule: + interval: "weekly" # Options: daily, weekly, monthly + commit-message: + prefix: "chore" # Customize commit message prefix (e.g., "chore", "build") + prefix-development: "chore" # Optional, prefix for development dependencies + reviewers: + - "your-reviewer-username" # Optional, replace with GitHub usernames for PR review requests + labels: + - "dependencies" # Optional, labels to add to PRs (e.g., "dependencies", "github-actions") + ignore: + - dependency-name: "actions/checkout" # Optional, ignore updates for specific actions + versions: ["2.x"] # Optional, ignore specific versions