From 4818e0b7eb39fd93734aa1c6613d37219e5b4e5a Mon Sep 17 00:00:00 2001 From: Joseph T Lyons Date: Sun, 11 Aug 2024 15:02:57 -0400 Subject: [PATCH] Don't thank staff members in release notes --- script/get-preview-channel-changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/get-preview-channel-changes b/script/get-preview-channel-changes index 945c372a7e..3a5ec23738 100755 --- a/script/get-preview-channel-changes +++ b/script/get-preview-channel-changes @@ -118,7 +118,7 @@ function getCreditString(pullRequestNumber, contributor, isStaff) { credit += pullRequestMarkdownLink; } - if (contributor && isStaff) { + if (contributor && !isStaff) { const contributorMarkdownLink = `[${contributor}](${GITHUB_URL}/${contributor})`; credit += `; thanks ${contributorMarkdownLink}`; }