Skip to content

Commit ee16e35

Browse files
authored
chore(ci): Fix external contributor action when multiple contributions existed (#17950)
#13335 added a plural `s` to the contribution message when multiple people contributed to the repo but the regex for the lookup lacks this.
1 parent a34d0bf commit ee16e35

File tree

1 file changed

+1
-1
lines changed
  • dev-packages/external-contributor-gh-action

1 file changed

+1
-1
lines changed

dev-packages/external-contributor-gh-action/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const UNRELEASED_HEADING = `## Unreleased
77
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
88
`;
99

10-
const contributorMessageRegex = /Work in this release was contributed by (.+)\. Thank you for your contribution!/;
10+
const contributorMessageRegex = /Work in this release was contributed by (.+)\. Thank you for your contributions?!/;
1111

1212
async function run() {
1313
const { getInput } = core;

0 commit comments

Comments
 (0)