-
Notifications
You must be signed in to change notification settings - Fork 220
25 lines (23 loc) · 1.25 KB
/
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: 'Close Stale Issues'
on:
schedule:
- cron: "0 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it had been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
stale-pr-message: 'This pull request is stale because it had been open 30 days with no activity. Remove stale label or comment or this PR will be closed in 5 days.'
close-issue-message: 'This issue got closed because the stale label has not been removed and no comment has been added within the past 5 days.'
close-pr-message: 'This issue got closed because the stale label has not been removed and no comment has been added within the past 5 days.'
stale-issue-label: 'Status: Stale'
stale-pr-label: 'Status: Stale'
close-issue-label: 'Status: Abandoned'
close-pr-label: 'Status: Abandoned'
exempt-issue-labels: "Status: Confirmed,Status: In Progress,Status: Revision Needed"
exempt-pr-labels: "Status: Confirmed,Status: In Progress,Status: Revision Needed"
days-before-stale: 30
days-before-close: 5