From 92dde1219693f1c80e9a8d378d49d93723f6d409 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 13 Aug 2024 09:44:12 +0200 Subject: [PATCH] chore(ci): Adjust contribution message for multiple contributors --- dev-packages/external-contributor-gh-action/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-packages/external-contributor-gh-action/index.mjs b/dev-packages/external-contributor-gh-action/index.mjs index 7eff418e9205..ffa9369ee2df 100644 --- a/dev-packages/external-contributor-gh-action/index.mjs +++ b/dev-packages/external-contributor-gh-action/index.mjs @@ -48,7 +48,7 @@ async function run() { const newContributors = formatter.format(users); const newChangelog = changelogStr.replace( contributorMessageRegex, - `Work in this release was contributed by ${newContributors}. Thank you for your contribution!`, + `Work in this release was contributed by ${newContributors}. Thank you for your contributions!`, ); fs.writeFile(changelogFilePath, newChangelog);