Skip to content

Commit a981dc6

Browse files
github-actions-bot: fix publishing of canary releases (#3534)
1 parent bb70cbc commit a981dc6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/github-actions-bot.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676
core.setOutput('cmd', comment.replace('@github-actions ', '').trim());
7777
7878
const { url } = context.payload.issue.pull_request;
79-
core.setOutput('pullRequestJSON', await github.request(url));
79+
const { data } = await github.request(url);
80+
core.setOutput('pullRequestJSON', JSON.stringify(data, null, 2));
8081
8182
cmd-publish-pr-on-npm:
8283
needs: [accept-cmd]

0 commit comments

Comments
 (0)