From d0a6e4f95087405a44fbf2d04c53c49008ee1d3a Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:51:58 -0700 Subject: [PATCH 1/3] 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 cd23451a78d5d3913efffaf1501301b0cc2e7bab Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:53:36 -0700 Subject: [PATCH 2/3] chore: standardize enterprise Dependabot configuration From e2cdcae3446408e2a237b554ca7c0c6a0fedd0df Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 14:45:34 -0700 Subject: [PATCH 3/3] 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