-
Notifications
You must be signed in to change notification settings - Fork 86
40 lines (35 loc) · 1.37 KB
/
reply-label-issue-comment.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
# reply-label-issue-comment.yml
# mark the status of the issue as waiting for repliers (contributor should reply) or waiting for author (issue author should reply)
name: Add issues workflow labels
on:
issue_comment:
types: [ created ]
jobs:
add-label-if-is-author:
runs-on: ubuntu-latest
if: (github.event.issue.user.id == github.event.comment.user.id) && !github.event.issue.pull_request && (github.event.issue.state == 'open')
steps:
- name: Add require handle label
uses: actions-cool/issues-helper@v2
with:
actions: 'add-labels'
labels: 'waiting for repliers'
- name: Remove require reply label
uses: actions-cool/issues-helper@v2
with:
actions: 'remove-labels'
labels: 'waiting for author'
add-label-if-not-author:
runs-on: ubuntu-latest
if: (github.event.issue.user.id != github.event.comment.user.id && github.event.comment.user.id != 69946302) && !github.event.issue.pull_request && (github.event.issue.state == 'open')
steps:
- name: Add require reply label
uses: actions-cool/issues-helper@v2
with:
actions: 'add-labels'
labels: 'waiting for author'
- name: Remove require handle label
uses: actions-cool/issues-helper@v2
with:
actions: 'remove-labels'
labels: 'waiting for repliers'