Skip to content

Commit f51e2d5

Browse files
authored
Fix Accidential closures in public stale check (#17866)
Co-authored-by: chiedo <chiedo@users.noreply.github.com>
1 parent f0223b5 commit f51e2d5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/triage-stale-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
1515
stale-pr-message: 'A stale label has been added to this pull request because it has been open 7 days with no activity. To keep this PR open, add a comment or push a commit within 3 days.'
16-
days-before-pr-stale: 7
17-
days-before-pr-close: 3
16+
days-before-stale: 7
17+
days-before-close: 3
1818
stale-pr-label: 'stale'
1919
exempt-pr-labels: 'waiting for review'
2020
stale_staff:
@@ -25,8 +25,8 @@ jobs:
2525
with:
2626
repo-token: ${{ secrets.GITHUB_TOKEN }}
2727
stale-pr-message: 'This is a gentle bump for the docs team that this PR is waiting for review.'
28-
days-before-pr-stale: 14
29-
days-before-pr-close: -1 # Never close
28+
days-before-stale: 14
29+
days-before-close: -1 # Never close
3030
only-labels: 'waiting for review'
3131
# The hope is that by setting the stale-pr-label to the same label
3232
# as the label that the stale check looks for, this will result in

0 commit comments

Comments
 (0)