Skip to content

Commit 09456cb

Browse files
chore: decrease stale time before closing issues with no reproduction (vercel#32955)
vercel#32214 intended to only allow 30 days of stale time and then close the issue. After studying the docs: - https://github.com/actions/stale#days-before-issue-stale - https://github.com/actions/stale#days-before-issue-close and the cron job action: https://github.com/vercel/next.js/actions/runs/1647416426 I realized that we currently mark an inactive issue without reproduction as stale after 60 days and wait another 30 days before actually closing it. With this PR, we mark issues with no reproduction as stale after 30 days and close them the day after. This should result in a lower count of issues that are unactionable and the author seems to have moved on. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [ ] Make sure the linting passes by running `yarn lint`
1 parent be1d308 commit 09456cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/stale.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
with:
1515
only-labels: 'please add a complete reproduction'
1616
close-issue-message: 'This issue has been automatically closed after 30 days of inactivity with no reproduction. If you are running into a similar issue, please open a new issue with a reproduction. Thank you.'
17-
days-before-issue-close: 30
17+
days-before-issue-close: 1
18+
days-before-issue-stale: 30
1819
days-before-pr-close: -1
1920
days-before-pr-stale: -1
2021
exempt-issue-labels: 'blocked,must,should,keep'

0 commit comments

Comments
 (0)