Skip to content

Commit 881451d

Browse files
fgibertonimlodic
authored andcommitted
Fix for stale issue workflows
1 parent 8fe8b93 commit 881451d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Diff for: .github/workflows/stale.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,21 @@ jobs:
1111
steps:
1212
- uses: actions/stale@v9
1313
with:
14-
repo-token: ${{ github.token }}
14+
# PRs
1515
stale-pr-message: "This pull request has been marked as stale because it has had no activity for 10 days. If you are still working on this, please provide some updates or it will be closed in 5 days."
1616
close-pr-message: "This pull request has been closed because it had no updates in 15 days. If you're still working on this fell free to reopen."
1717
days-before-pr-stale: 10
1818
days-before-pr-close: 5
1919
stale-pr-label: "stale"
2020
exempt-pr-labels: "keep-open"
21+
# Issues
22+
stale-issue-message: "This issue has been marked as stale because it has had no activity for 10 days. If you are still working on this, please provide some updates."
23+
days-before-issue-stale: 10
24+
days-before-issue-close: -1 # do not close Issues
25+
stale-issue-label: "stale"
26+
exempt-issue-labels: "keep-open"
27+
# General
28+
repo-token: ${{ github.token }}
2129
operations-per-run: 100
2230
debug-only: false
2331
exempt-all-milestones: true

0 commit comments

Comments
 (0)