Skip to content

Commit

Permalink
yaml ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredly committed Nov 21, 2019
1 parent 25c6ed9 commit af6260d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pull Request Comment Trigger

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

<!-- 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. -->

Expand Down
13 changes: 8 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: 'Wait'
description: 'Wait a designated number of milliseconds'
name: 'Pull Request Comment Trigger'
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: 'The emoji "reaction" to put on the comment to indicate that the trigger was detected. For example, "rocket"'
required: false
trigger:
description: 'The string to look for in pull-request descriptions and comments'
description: 'The string to look for in pull-request descriptions and comments. For example "#build/android"'
required: true
outputs:
triggered:
description: the string 'true' if the trigger was found
description: the string 'true' if the trigger was found, otherwise the string 'false'
runs:
using: 'node12'
main: 'dist/index.js'
main: 'dist/index.js'
branding:
icon: check-circle
color: red

0 comments on commit af6260d

Please sign in to comment.