Skip to content

Commit 601a52d

Browse files
Remove PR staling
This commit sets the number of days before marking issues or PRs as stale to 100 years. This number is overriden for issues to be 1 years but stays 100 years for PRs. This means that PR effectively do not get marked as stale.
1 parent 735448c commit 601a52d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/stale.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
steps:
1111
- uses: actions/stale@v9
1212
with:
13+
# Set default number of days before being marked stale to 100 years
14+
# This will be overriden by "days-before-issue-stale" and "days-before-pr-stale"
15+
days-before-stale: 36500
1316
# The message to be shown for stale issues
1417
stale-issue-message: 'This issue has been inactive for a year and has been marked as stale. It will be closed in 15 days if it continues to be stale. If you believe this is still an issue, please add a comment.'
1518
close-issue-message: 'This issue has been marked stale for 15 days and has been automatically closed.'
@@ -27,5 +30,5 @@ jobs:
2730
# stale-pr-message: 'This PR has been inactive for a year and has been marked as stale. It will be closed in 15 days if it continues to be stale. If you are still working on this PR, please add a comment.'
2831
# close-pr-message: 'This PR has been marked stale for 15 days and has been automatically closed.'
2932
# exempt-pr-labels: 'no-stale'
30-
# days-before-pr-stale: 365
33+
#days-before-pr-stale: 365
3134
# days-before-pr-close: 15

0 commit comments

Comments
 (0)