-
-
Notifications
You must be signed in to change notification settings - Fork 1
23 lines (21 loc) · 864 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
# Mark stale issues and pull requests
name: Stale
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
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 has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
stale-issue-label: 'stale'
exempt-issue-labels: 'awaiting-approval,work-in-progress,wip'
stale-pr-label: 'stale'
exempt-pr-labels: 'awaiting-approval,work-in-progress,wip'
days-before-stale: 30
days-before-close: 5