From 9192061154776848639e62e0dab31a8af41ceaf9 Mon Sep 17 00:00:00 2001 From: Robin Kroonen Date: Sun, 1 Sep 2024 09:06:05 -0400 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..040cca93 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # npm dependencies + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + versioning-strategy: auto + allow: + - dependency-type: "direct" + - dependency-type: "indirect" + ignore: + - dependency-name: "react" + versions: ["17.x", "18.x"] # Ignore major React updates to avoid breaking changes + - dependency-name: "react-dom" + versions: ["17.x", "18.x"] + commit-message: + prefix: "npm" + include: "scope" + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 5 + commit-message: + prefix: "GitHub Actions" + include: "scope"