From f4161922d3e8eec8010b02ffb9af0ce560735fad Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:51:43 -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..6fc02f4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + target-branch: main + 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 7864f5a3bba76e10e06da503c4d72b58c2ca4b72 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:53:25 -0700 Subject: [PATCH 2/3] chore: standardize enterprise Dependabot configuration From c9de79f42bb846c43b860ee9b87b5d8d96371f12 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 14:45:35 -0700 Subject: [PATCH 3/3] style: use block-style Dependabot YAML --- .github/dependabot.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fc02f4..960f2b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,19 @@ updates: - package-ecosystem: github-actions directory: / target-branch: main - 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: + - "*" + labels: + - dependencies + - github-actions + commit-message: + prefix: ci + include: scope