From 57e5d4bcb9a4bb2279e7ca4ced4e15bac541d41c Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:51:58 -0700 Subject: [PATCH 1/2] chore: add enterprise Dependabot configuration --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..7a1f5fa --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + target-branch: develop + schedule: {interval: weekly, day: friday} + open-pull-requests-limit: 5 + cooldown: {default-days: 7} + groups: + github-actions: {patterns: ["*"]} + labels: [dependencies, github-actions] + commit-message: {prefix: ci, include: scope} From 53af810b4e12236bbbb95505e4b99d1e8725c049 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 14:45:34 -0700 Subject: [PATCH 2/2] chore: use Dependabot default labels --- .github/dependabot.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a1f5fa..f9b23b3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,16 @@ updates: - package-ecosystem: github-actions directory: / target-branch: develop - schedule: {interval: weekly, day: friday} + schedule: + interval: weekly + day: friday open-pull-requests-limit: 5 - cooldown: {default-days: 7} + cooldown: + default-days: 7 groups: - github-actions: {patterns: ["*"]} - labels: [dependencies, github-actions] - commit-message: {prefix: ci, include: scope} + github-actions: + patterns: + - "*" + commit-message: + prefix: ci + include: scope