We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05253a1 commit 72d73eaCopy full SHA for 72d73ea
1 file changed
index.ts
@@ -31,7 +31,7 @@ try {
31
};
32
33
const branch = core.getInput('branch');
34
- const commentCommand = core.getInput('comment_command');
+ const trigger_comment = core.getInput('trigger_comment');
35
const commentPrefix = core.getInput('comment_prefix');
36
const commentSuffix = core.getInput('comment_suffix');
37
const commentIsGlobal = core.getInput('comment_is_global') === 'true';
@@ -57,7 +57,7 @@ try {
57
const changesetBinary = path.join('node_modules/.bin/changeset');
58
const versionPrefix = 'snapshot';
59
60
- if (commentCommand.split(',').indexOf(payload.comment.body) !== -1) {
+ if (trigger_comment.split(',').indexOf(payload.comment.body) !== -1) {
61
await octokit.rest.reactions.createForIssueComment({
62
...ownerRepo,
63
comment_id: payload.comment.id,
0 commit comments