forked from Khan/pull-request-comment-trigger
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |