forked from qtile/qtile
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (28 loc) · 1.37 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
26
27
28
29
name: "Close stale issues"
on:
schedule:
- cron: "0 */4 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove the `status: stale` label or comment, or this will be closed in 30 days.'
stale-issue-label: 'status: stale'
exempt-issue-labels: 'kind: task,kind: bug,kind: enhancement'
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove the `status: stale` label or comment, or this will be closed in 30 days.'
stale-pr-label: 'status: stale'
days-before-stale: 90
days-before-close: 30
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove `status: stale` label or comment, or this will be closed in 30 days.'
stale-issue-label: 'status: stale'
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove `status: stale` label or comment, or this will be closed in 30 days.'
stale-pr-label: 'status: stale'
only-labels: 'status: unconfirmed'
days-before-stale: 90
days-before-close: 30