File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -64,13 +64,12 @@ export async function generateChangelog(
64
64
65
65
if ( lastReleaseVersion ) {
66
66
// Find all the commits between the current release and the last release.
67
- const commits = shell
68
- . exec (
69
- `git --no-pager log ${ lastReleaseVersion } ..${ currentVersion } --pretty=format:""%H""` ,
70
- { silent : true }
71
- )
72
- . stdout . trim ( )
73
- . split ( '\n' )
67
+ const command = shell . exec (
68
+ `git --no-pager log ${ lastReleaseVersion } ..${ currentVersion } --pretty=format:""%H""` ,
69
+ { silent : true }
70
+ )
71
+ core . info ( `Executed git log with output ${ command } ` )
72
+ const commits = command . stdout . trim ( ) . split ( '\n' )
74
73
const pullRequestMetadata = await fetchPullRequestBodyFromCommits (
75
74
commits ,
76
75
graphqlWithAuth
You can’t perform that action at this time.
0 commit comments