Skip to content

Commit 8c18f71

Browse files
author
Danny McCormick
authored
Add stale workflow (#384)
1 parent 417f071 commit 8c18f71

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.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 and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: "0 * * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v1
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: 'This issue has had no activity in 90 days. Please comment if it is not actually stale'
17+
stale-issue-label: 'stale'
18+
days-before-stale: 90
19+
days-before-close: 7
20+
exempt-pr-label: 'no-stale'

0 commit comments

Comments
 (0)