Skip to content

Commit 0432b5a

Browse files
authoredNov 25, 2020
Lower staleness threshold to 60 days (#499)
1 parent 85735fa commit 0432b5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

Diff for: ‎.github/workflows/stale.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
# Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
# The message to post on the issue when tagging it. If none provided, will not mark issues stale.
17-
stale-issue-message: "This issue has been marked as stale due to 90 days of inactivity. Stale issues will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring."
17+
stale-issue-message: "This issue has been marked as stale due to 60 days of inactivity. Stale issues will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring."
1818
# The message to post on the pr when tagging it. If none provided, will not mark pull requests stale.
19-
stale-pr-message: "This pull request has been marked as stale due to 90 days of inactivity. Stale PRs will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring."
19+
stale-pr-message: "This pull request has been marked as stale due to 60 days of inactivity. Stale PRs will be closed after a further 30 days of inactivity; please remove the stale label in order to prevent this occurring."
2020
# The message to post on the issue when closing it. If none provided, will not comment when closing an issue.
2121
close-issue-message: "Closing stale issue due to further inactivity."
2222
# The message to post on the pr when closing it. If none provided, will not comment when closing a pull requests.
2323
close-pr-message: "Closing stale PR due to further inactivity."
2424
# The number of days old an issue can be before marking it stale. Set to -1 to never mark issues or pull requests as stale automatically.
25-
days-before-stale: 90
25+
days-before-stale: 60
2626
# The number of days to wait to close an issue or pull request after it being marked stale. Set to -1 to never close stale issues.
2727
days-before-close: 30
2828
# The label to apply when an issue is stale.

0 commit comments

Comments
 (0)
Please sign in to comment.