diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..54a7825 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +version: 2 +updates: + # npm dependencies + - package-ecosystem: "npm" + directory: "/" + target-branch: "dev" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 10 + commit-message: + prefix: "☕ chore" + labels: + - "security" + - "infra" + groups: + # Group minor/patch updates together to reduce PR noise + minor-and-patch: + update-types: + - "minor" + - "patch" + + # GitHub Actions versions + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "dev" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + commit-message: + prefix: "☕ chore" + labels: + - "security" + - "infra"