Skip to content

Commit d6c99ce

Browse files
authored
chore: add cooldown interval to dependabot configuration (#4854)
This pull request updates the Dependabot configuration to introduce a cooldown period for experimental branches across multiple update directories. This change helps prevent Dependabot from creating experimental branches too frequently, reducing noise and potential merge conflicts. Dependabot configuration enhancements: * Added the `experimental-branch-cooldown` setting with `default-days: 5` to the root `/`, `/lambdas`, `/.ci/Dockerfile`, `/.devcontainer/Dockerfile`, and `/.github/workflows/mkdocs` update directories in `.github/dependabot.yml`. [[1]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R18-R19) [[2]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R30-R31) [[3]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R63-R64) [[4]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R75-R76) [[5]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R87-R88)
1 parent 43ffcce commit d6c99ce

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ updates:
1515
directory: "/"
1616
schedule:
1717
interval: "weekly"
18+
cooldown:
19+
default-days: 5
1820
groups:
1921
github:
2022
patterns:
@@ -25,6 +27,8 @@ updates:
2527
directory: "/lambdas"
2628
schedule:
2729
interval: "weekly"
30+
cooldown:
31+
default-days: 5
2832
groups:
2933
aws:
3034
patterns:
@@ -60,6 +64,8 @@ updates:
6064
directory: "/.ci/Dockerfile"
6165
schedule:
6266
interval: "weekly"
67+
cooldown:
68+
default-days: 5
6369
labels:
6470
- "dependencies"
6571
- "docker"
@@ -74,6 +80,8 @@ updates:
7480
directory: "/.devcontainer/Dockerfile"
7581
schedule:
7682
interval: "weekly"
83+
cooldown:
84+
default-days: 5
7785
labels:
7886
- "dependencies"
7987
- "docker"
@@ -88,6 +96,8 @@ updates:
8896
directory: "/.github/workflows/mkdocs"
8997
schedule:
9098
interval: "weekly"
99+
cooldown:
100+
default-days: 5
91101
groups:
92102
python-deps:
93103
patterns:

0 commit comments

Comments
 (0)