Skip to content

Commit b5299fe

Browse files
authored
actions
1 parent 7a715bb commit b5299fe

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/issues-stale.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '0 16 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
steps:
13+
- uses: actions/stale@v5
14+
with:
15+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
16+
days-before-stale: 30
17+
days-before-close: 5
18+
exempt-all-pr-milestones: true
19+
exempt-issue-labels: 'help wanted'

0 commit comments

Comments
 (0)