-
Notifications
You must be signed in to change notification settings - Fork 923
42 lines (38 loc) · 1.22 KB
/
issue-daily.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
30
31
32
33
34
35
36
37
38
39
40
41
42
name: issue-daily
on:
schedule:
- cron: '0 0 * * *'
jobs:
issue-label-stale:
name: label stale issues
runs-on: ubuntu-latest
steps:
- uses: actions-cool/issues-helper@v2
with:
actions: 'check-inactive'
token: ${{ secrets.GITHUB_TOKEN }}
inactive-day: 15
inactive-label: 'stale'
exclude-labels: 'bug, documentation, enhancement, feature, help wanted, need reproduction, need review, stale'
body: |
This issue is marked as `stale` because it has not had recent activity. Issues marked with `stale` will be closed if they have no activity within 7 days.
issue-close-stale:
name: close stale issues
runs-on: ubuntu-latest
steps:
- uses: actions-cool/issues-helper@v2
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: 'stale'
inactive-day: 7
issue-close-need-reproduction:
name: close need-reproduction issues
runs-on: ubuntu-latest
steps:
- uses: actions-cool/issues-helper@v2
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: 'need reproduction'
inactive-day: 7