We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb70cbc commit a981dc6Copy full SHA for a981dc6
1 file changed
.github/workflows/github-actions-bot.yml
@@ -76,7 +76,8 @@ jobs:
76
core.setOutput('cmd', comment.replace('@github-actions ', '').trim());
77
78
const { url } = context.payload.issue.pull_request;
79
- core.setOutput('pullRequestJSON', await github.request(url));
+ const { data } = await github.request(url);
80
+ core.setOutput('pullRequestJSON', JSON.stringify(data, null, 2));
81
82
cmd-publish-pr-on-npm:
83
needs: [accept-cmd]
0 commit comments