Skip to content

Commit f881a87

Browse files
authored
Create stale.yml
1 parent 4ae9660 commit f881a87

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/stale.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Mark stale issues
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v3
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
days-before-stale: 30
17+
days-before-close: 5
18+
stale-issue-message: 'This issue has been inactive for 30 days. It will be in closed in 5 days without any new activity.'
19+
stale-issue-label: 'no-issue-activity'
20+
exempt-issue-labels: 'discussion,work-in-progress'

0 commit comments

Comments
 (0)