From 786071e8873f456d5b4caabe29d821b425327a32 Mon Sep 17 00:00:00 2001 From: silent-cipher Date: Wed, 1 Jul 2026 21:39:54 +0530 Subject: [PATCH] ci: add dependabot configuration --- .github/dependabot.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e16db65 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,39 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + open-pull-requests-limit: 5 + schedule: + interval: monthly + + - package-ecosystem: npm + directory: / + open-pull-requests-limit: 5 + schedule: + interval: weekly + cooldown: + default-days: 7 + groups: + safe-workspace-updates: + patterns: + - "*" + exclude-patterns: + - "@biomejs/biome" # Required manual schema updates & can fail CI + update-types: + - minor + - patch + + - package-ecosystem: npm + directory: /subgraph-client + open-pull-requests-limit: 5 + schedule: + interval: weekly + cooldown: + default-days: 7 + groups: + safe-workspace-updates: + patterns: + - "*" + update-types: + - minor + - patch