-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (20 loc) · 949 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
# Mark and close stale issues to keep issues clean
name: Close stale issues and pull requests
on:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3.0.5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue did not have any activity in the last 60 days. It has been marked as stale and will be closed soon.'
stale-pr-message: 'This pull request did not have any activity in the last 60 days. It has been marked as stale and will be closed soon.'
stale-issue-label: 'S2 - stale - no activity'
stale-pr-label: 'S2 - stale - no activity'
exempt-issue-labels: 'S6 - in progress'
exempt-pr-labels: 'S6 - in progress'
days-before-stale: 60
days-before-close: 7