We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7755a05 commit 98fc8b1Copy full SHA for 98fc8b1
scripts/generate-github-release.mjs
@@ -99,7 +99,7 @@ function getContributors(previousVersion) {
99
const contributors = new Map();
100
for (const line of log.split("\n").filter(Boolean)) {
101
const [name, email] = line.split("|");
102
- if (!name || email?.includes("noreply.github.com")) {
+ if (!name || email?.endsWith("noreply.github.com")) {
103
// Try to extract username from noreply email
104
const match = email?.match(/(\d+\+)?(.+)@users\.noreply\.github\.com/);
105
if (match) {
0 commit comments