forked from Khan/pull-request-comment-trigger
-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
29 lines (29 loc) · 1.03 KB
/
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
name: 'Pull Request Comment Trigger fork'
description: 'Look for a "trigger word" in a pull-request description or comment, so that later steps can know whether or not to run.'
inputs:
reaction:
description: If set, the specified emoji "reaction" is put on the comment to indicate that the trigger was detected. For example, "rocket".
required: false
default: ""
trigger:
description: 'The string to look for in pull-request descriptions and comments. For example "#build/android"'
required: true
prefix_only:
description: If 'true', the trigger must match the start of the comment.
required: false
default: "false"
allow_arguments:
description: If 'true', the trigger can have arguments. Can be passed via "**".
required: false
default: "false"
outputs:
triggered:
description: the string 'true' if the trigger was found, otherwise the string 'false'
comment_body:
description: The comment body.
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: check-circle
color: red