Skip to content

Commit 02ccca1

Browse files
committed
Configure actions/stale
1 parent f80f660 commit 02ccca1

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/stale.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
permissions:
7+
issues: write
8+
pull-requests: write
9+
10+
jobs:
11+
stale:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/stale@v5
15+
with:
16+
days-before-stale: 90
17+
days-before-close: 60
18+
exempt-issue-labels: 'pinned,security'
19+
exempt-pr-labels: 'pinned,security'
20+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had
21+
recent activity. It will be closed if no further activity occurs.
22+
23+
If this is still an issue for you, please try to help by debugging it
24+
further and sharing your results.
25+
26+
Thank you for your contributions.'
27+
stale-pr-message: 'This PR has been automatically marked as stale because it has not had
28+
recent activity. It will be closed if no further activity occurs.
29+
30+
If this is still an issue for you, please try to complete the PR by adding tests and making sure that the CI is green.
31+
32+
Thank you for your contributions.'

0 commit comments

Comments
 (0)