-
Notifications
You must be signed in to change notification settings - Fork 6
37 lines (35 loc) · 1.71 KB
/
close_inactive_issue.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
name: Close Inactive Issue
on:
schedule:
- cron: "0 0 * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- name: close inactive issue without reprodction
uses: actions-cool/[email protected]
with:
actions: 'close-issues'
labels: 'Need Reproduction'
inactive-day: 14
body: |
Since the issue was labeled with `Need Reproduction`, but no response in 7 days. This issue will be close. If you have any questions, you can comment and reply.
由于该 issue 被标记为需要可复现步骤,却 14 天未收到回应。现关闭 issue,若有任何问题,可评论回复。
- name: close inactive issue not use template
uses: actions-cool/[email protected]
with:
actions: 'close-issues'
labels: 'pls use issue template'
inactive-day: 14
body: |
Since the issue was labeled with `pls use issue template`, but no response in 7 days. This issue will be close. If you have any questions, you can comment and reply.
由于该 issue 被标记为需要使用模板,却 14 天未收到回应。现关闭 issue,若有任何问题,可评论回复。
- name: close inactive issue
uses: actions-cool/[email protected]
with:
actions: 'close-issues'
labels: 'inactive'
inactive-day: 14
body: |
Since the issue was labeled with `inactive`, but no response in 7 days. This issue will be close. If you have any questions, you can comment and reply.
由于该 issue 被标记为不活跃,且 14 天未收到回应。现关闭 issue,若有任何问题,可评论回复。