Skip to content

Commit

Permalink
fix: Message
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and gr2m committed Jan 19, 2020
1 parent dd1b255 commit e9d2e02
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 @@ -521,7 +521,7 @@ async function main() {
const matches = inputs.author.match(/^([^<]+)\s*<([^>]+)>$/);
assert(
matches,
`The "author" input "${inputs.author}" does conform to the "Name <[email protected]>" format`
`The "author" input "${inputs.author}" does not conform to the "Name <[email protected]>" format`
);
const [, name, email] = matches;

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async function main() {
const matches = inputs.author.match(/^([^<]+)\s*<([^>]+)>$/);
assert(
matches,
`The "author" input "${inputs.author}" does conform to the "Name <[email protected]>" format`
`The "author" input "${inputs.author}" does not conform to the "Name <[email protected]>" format`
);
const [, name, email] = matches;

Expand Down

0 comments on commit e9d2e02

Please sign in to comment.