Skip to content

Commit a7fb5fb

Browse files
authored
action: add stale action (#856)
Signed-off-by: Michael Dawson <[email protected]>
1 parent fd44609 commit a7fb5fb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Close stale issues"
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
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: 'This issue is stale because it has been open many days with no activity. It will be closed soon unless the stale label is removed or a comment is made.'
14+
stale-issue-label: 'stale'
15+
exempt-issue-label: 'never stale'
16+
days-before-stale: 90
17+
days-before-close: 30
18+

0 commit comments

Comments
 (0)