We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c853431 commit 5a56445Copy full SHA for 5a56445
.github/policies/close-issues.yml
@@ -21,10 +21,24 @@ configuration:
21
- closeIssue
22
23
eventResponderTasks:
24
- - description: Close issues labeled 'code-of-conduct'
25
- if:
26
- - payloadType: Issues
27
- - hasLabel:
28
- label: code-of-conduct
29
- then:
30
- - closeIssue
+ - description: Remove needs-more-info label when author comments on issue
+ if:
+ - payloadType: Issue_Comment
+ - isAction:
+ action: Created
+ - isActivitySender:
+ issueAuthor: True
31
+ - hasLabel:
32
+ label: needs-more-info
33
+ - isOpen
34
+ then:
35
+ - removeLabel:
36
37
+
38
+ - description: Close issues labeled 'code-of-conduct'
39
40
+ - payloadType: Issues
41
42
+ label: code-of-conduct
43
44
+ - closeIssue
0 commit comments