Skip to content

Commit c12a6a3

Browse files
authored
Merge branch 'main' into http-reaction
2 parents cf8246e + 8c09728 commit c12a6a3

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/renovate.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:base"
4+
"config:recommended"
55
],
6-
"schedule": ["before 8am on monday"],
7-
"timezone": "America/Los_Angeles",
86
"prConcurrentLimit": 10,
97
"dependencyDashboard": true,
108
"vulnerabilityAlerts": {
@@ -15,7 +13,7 @@
1513
{
1614
"description": "Group stable patch updates for potential automerge",
1715
"matchUpdateTypes": ["patch"],
18-
"minimumReleaseAge": "7 days",
16+
"minimumReleaseAge": "30 days",
1917
"automerge": false,
2018
"platformAutomerge": false,
2119
"addLabels": ["automerge-patch-candidate"],
@@ -24,7 +22,7 @@
2422
{
2523
"description": "Group stable minor updates for potential automerge",
2624
"matchUpdateTypes": ["minor"],
27-
"minimumReleaseAge": "14 days",
25+
"minimumReleaseAge": "60 days",
2826
"automerge": false,
2927
"platformAutomerge": false,
3028
"addLabels": ["automerge-minor-candidate"],

.github/workflows/automerge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ jobs:
9292
}
9393
9494
console.log("Starting automerge workflow...");
95-
await processPRs("automerge-patch-candidate", 3, 'squash'); // Patches wait 3 days
96-
await processPRs("automerge-minor-candidate", 10, 'squash'); // Minors wait 10 days
95+
await processPRs("automerge-patch-candidate", 7, 'squash'); // Patches wait 7 days
96+
await processPRs("automerge-minor-candidate", 14, 'squash'); // Minors wait 14 days
9797
console.log("Automerge workflow finished.");

0 commit comments

Comments
 (0)