Skip to content

Commit af6260d

Browse files
committed
yaml ready for release
1 parent 25c6ed9 commit af6260d

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pull Request Comment Trigger
22

3-
Look for a "trigger word" in a pull-request description or comment, so that later actions can know whether or not to run.
3+
Look for a "trigger word" in a pull-request description or comment, so that later steps can know whether or not to run.
44

55
<!-- TODO release workflow-preprocessor This is most useful in tandem with [workflow-preprocessor], so that you don't have to be writing a ton of `if`s all down the line. -->
66

action.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
name: 'Wait'
2-
description: 'Wait a designated number of milliseconds'
1+
name: 'Pull Request Comment Trigger'
2+
description: 'Look for a "trigger word" in a pull-request description or comment, so that later steps can know whether or not to run.'
33
inputs:
44
reaction:
55
description: 'The emoji "reaction" to put on the comment to indicate that the trigger was detected. For example, "rocket"'
66
required: false
77
trigger:
8-
description: 'The string to look for in pull-request descriptions and comments'
8+
description: 'The string to look for in pull-request descriptions and comments. For example "#build/android"'
99
required: true
1010
outputs:
1111
triggered:
12-
description: the string 'true' if the trigger was found
12+
description: the string 'true' if the trigger was found, otherwise the string 'false'
1313
runs:
1414
using: 'node12'
15-
main: 'dist/index.js'
15+
main: 'dist/index.js'
16+
branding:
17+
icon: check-circle
18+
color: red

0 commit comments

Comments
 (0)