Skip to content

Commit

Permalink
chore: print log
Browse files Browse the repository at this point in the history
  • Loading branch information
liweijie0812 committed Aug 13, 2024
1 parent 24a3de6 commit 1630643
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29245,7 +29245,7 @@ function generatorLogStart() {
target_commitish: 'develop', // 也可以从上下文中拿
});
(0, core_1.startGroup)('releaseNodes');
(0, core_1.info)(`releaseNodes:${JSON.stringify(github_1.context, null, 4)}`);
(0, core_1.info)(`releaseNodes:${JSON.stringify(releaseNodes, null, 4)}`);
(0, core_1.endGroup)();
const PRNumbers = (0, renderer_1.getPReformatNotes)(releaseNodes.data.body);
const PRListRes = yield Promise.all(PRNumbers.map(pull_number => octokit.rest.pulls.get({
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function generatorLogStart() {
target_commitish: 'develop', // 也可以从上下文中拿
})
startGroup('releaseNodes')
info(`releaseNodes:${JSON.stringify(context, null, 4)}`)
info(`releaseNodes:${JSON.stringify(releaseNodes, null, 4)}`)
endGroup()
const PRNumbers = getPReformatNotes(releaseNodes.data.body)

Expand Down

0 comments on commit 1630643

Please sign in to comment.