Skip to content

Commit

Permalink
fix: short commit length
Browse files Browse the repository at this point in the history
  • Loading branch information
uanid committed Jun 12, 2024
1 parent 69e1da9 commit 5687ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async function makeCommitRequestBody(config: PluginConfig, context: PublishConte
lastRelease: context.lastRelease,
nextRelease: context.nextRelease,
commit: {
short: publishConfig.commitSha.substring(0, 8),
short: publishConfig.commitSha.substring(0, 7),
full: publishConfig.commitSha,
}
};
Expand Down

0 comments on commit 5687ba0

Please sign in to comment.