Skip to content

Commit 6ae1e1d

Browse files
authored
Create stale.yml
1 parent ca09292 commit 6ae1e1d

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Mark stale issues and pull requests
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@v1
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: 'A friendly reminder that this issue had no activity for 30 days.'
17+
stale-pr-message: 'A friendly reminder that this PR had no activity for 30 days.'
18+
stale-issue-label: 'stale-issue'
19+
tale-pr-label: 'stale-pr'
20+
days-before-stale: 30
21+
days-before-close: 365

0 commit comments

Comments
 (0)