Skip to content

Commit

Permalink
github-actions-bot: fix publishing of canary releases (#3534)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Apr 14, 2022
1 parent bb70cbc commit a981dc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/github-actions-bot.yml
Expand Up @@ -76,7 +76,8 @@ jobs:
core.setOutput('cmd', comment.replace('@github-actions ', '').trim());
const { url } = context.payload.issue.pull_request;
core.setOutput('pullRequestJSON', await github.request(url));
const { data } = await github.request(url);
core.setOutput('pullRequestJSON', JSON.stringify(data, null, 2));
cmd-publish-pr-on-npm:
needs: [accept-cmd]
Expand Down

0 comments on commit a981dc6

Please sign in to comment.