Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Update validateTitle.js
Browse files Browse the repository at this point in the history
Signed-off-by: Zadkiel Aharonian <hello@zadkiel.fr>
  • Loading branch information
aslafy-z authored Jan 13, 2024
1 parent fe0ffdf commit 0526c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validateTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = async function validateTitle(preset, title) {
if (!result.type) {
throw new Error(
`No release type found in pull request title "${title}". The title should match the commit message format as specified by https://www.conventionalcommits.org/. The functionalities can also be altered by the selected preset plugin (${preset}). ` +
`\n\nPlease see the parse result: ${result}.`
`\n\nPlease see the parse result: ${JSON.stringify(result)}.`
);
}
};

0 comments on commit 0526c78

Please sign in to comment.