Don't thank staff members in release notes

This commit is contained in:
Joseph T Lyons
2024-08-11 15:02:57 -04:00
parent 2490b050ee
commit 4818e0b7eb
+1 -1
View File
@@ -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}`;
}