forked from tonesto7/echo-speaks
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (21 loc) · 900 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 8 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked stale automatically after no activity for the last 180 days.'
stale-pr-message: 'This pull request has been marked stale automatically after no activity for the last 180 days.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
close-issue-message: 'This Issue has been closed automatically after 187 days of no activity.'
close-pr-message: 'This PR has been closed automatically after 187 days of no activity.'
days-before-stale: 180
days-before-close: 7
close-issue-label: 'Stale Issue'
exempt-issue-labels: 'Never Stale'