Skip to content

Commit

Permalink
[Nakamura] Fix params
Browse files Browse the repository at this point in the history
Signed-off-by: nakamuraos <[email protected]>
  • Loading branch information
nakamuraos committed Dec 3, 2021
2 parents f1636fc + af5ac07 commit 52b2394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ function run() {
try {
const title = core.getInput('title', { required: true });
const subtitle = core.getInput('subtitle', { required: false });
const webhookUrl = core.getInput('url', { required: true });
const webhookUrl = core.getInput('webhookUrl', { required: true });
const status = JobStatus.parse(core.getInput('status', { required: true }));
const threadKey = core.getInput('threadKey', { required: false });
core.debug(`input params: title=${title}, subtitle=${subtitle}, status=${status}, webhookUrl=${webhookUrl}, threadKey=${threadKey}`);
Expand Down

0 comments on commit 52b2394

Please sign in to comment.