Skip to content

Commit 300754d

Browse files
authored
chore: Add stale GitHub action
1 parent 15ca922 commit 300754d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/stale.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Check stale issues"
2+
on:
3+
schedule:
4+
- cron: "0 0 */7 * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v1
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
stale-issue-message: 'Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community attention? This issue may be closed if no further activity occurs.'
14+
stale-issue-label: 'stale'
15+
days-before-stale: 30
16+
days-before-close: 5

0 commit comments

Comments
 (0)