generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
39 lines (35 loc) · 991 Bytes
/
action.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
name: 'Comment Finder'
description:
'Check if a specific user or team member has commented on the current PR with
given keywords'
author: 'awcodify@gmail.com'
branding:
icon: 'search'
color: 'blue'
inputs:
authors:
description:
'GitHub usernames or team slugs separated by commas. This will be used to
filter comments by the author'
required: true
keywords:
description: 'Comment keywords to search for (comma-separated)'
required: true
default: 'approve,yes,LGTM'
token:
description: 'GitHub token'
required: true
fail_on_mismatch:
description:
'Fail the action if the given keywords are not found in the comments'
default: 'false'
include_review_comments:
description:
'Fail the action if the given keywords are not found in the comments'
default: 'false'
outputs:
matching_authors:
description: 'Authors who have commented with the given keywords'
runs:
using: node20
main: dist/index.js