Skip to content

Commit

Permalink
fix: Make link in error message clickable (#112)
Browse files Browse the repository at this point in the history
* fix: Make link in error clickable in GH Actions

* Remove period from link anchor

Co-authored-by: Jan Amann <jan@amann.me>

Co-authored-by: Jan Amann <jan@amann.me>
  • Loading branch information
dcroote and amannn committed Jul 26, 2021
1 parent 1829a7c commit 2a292a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validatePrTitle.js
Expand Up @@ -34,7 +34,7 @@ module.exports = async function validatePrTitle(

if (!result.type) {
throw new Error(
`No release type found in pull request title "${prTitle}". Add a prefix to indicate what kind of release this pull request corresponds to (see https://www.conventionalcommits.org/).\n\n${printAvailableTypes()}`
`No release type found in pull request title "${prTitle}". Add a prefix to indicate what kind of release this pull request corresponds to. For reference, see https://www.conventionalcommits.org/\n\n${printAvailableTypes()}`
);
}

Expand Down

0 comments on commit 2a292a6

Please sign in to comment.