Skip to content

Commit 1fa4897

Browse files
authored
.github/workflows/AutoMerger.yml: Increase timeouts (#83)
Closes #82 Increase the merge and update timeouts to increase likelihood the operations can occur. Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
1 parent 009a8c2 commit 1fa4897

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/AutoMerger.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
MERGE_LABELS: "!state:duplicate,!state:invalid,!state:needs-maintainer-feedback,!state:needs-submitter-info,!state:under-discussion,!state:wont-fix,!type:notes,!type:question"
3636
MERGE_METHOD: "squash" # Default merge method squash (instead of "merge")
3737
MERGE_REMOVE_LABELS: = "" # Do not remove any labels from a PR after merge
38-
MERGE_RETRIES: "120" # Check if PR status checks pass up to 120 times
39-
MERGE_RETRY_SLEEP: "60000" # Check if PR status checks are met every 60 secs (60 * 120 = check over 2 hrs)
38+
MERGE_RETRIES: "180" # Check if PR status checks pass up to 180 times
39+
MERGE_RETRY_SLEEP: "60000" # Check if PR status checks are met every 60 secs (60 * 180 = check over 3 hrs)
4040
UPDATE_LABELS: "" # Always update these PRs if needed to merge
4141
UPDATE_METHOD: "rebase" # Default PR update method rebase (instead of "merge")
42-
UPDATE_RETRIES: "2" # Check if an update is needed up to 2 times
43-
UPDATE_RETRY_SLEEP: "30000" # Check if an update is needed every 30 secs (2 * 30 = check over ~1 min)
42+
UPDATE_RETRIES: "120" # Check if an update is needed up to 120 times
43+
UPDATE_RETRY_SLEEP: "60000" # Check if an update is needed every 30 secs (60 * 120 = check over 2 hrs)

0 commit comments

Comments
 (0)