You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+3
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,9 @@ jobs:
10
10
steps:
11
11
- uses: actions/stale@v9
12
12
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
13
16
# The message to be shown for stale issues
14
17
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.'
15
18
close-issue-message: 'This issue has been marked stale for 15 days and has been automatically closed.'
0 commit comments