We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88358ee commit aa7ef7cCopy full SHA for aa7ef7c
1 file changed
.github/workflows/mirror-changelog.yml
@@ -82,7 +82,10 @@ jobs:
82
// Match and extract changelog item
83
const itemMatch = trimmedLine.match(/^[*-]\s(.*)$/);
84
if (itemMatch) {
85
- const originalContent = itemMatch[1];
+ let originalContent = itemMatch[1];
86
+
87
+ // remove zero-width space character
88
+ originalContent = originalContent.replace(/\u200B/g, '');
89
const lineAsLowerCase = originalContent.toLowerCase();
90
91
const hasPrefix = prefixesToFilter.some(prefix => lineAsLowerCase.includes(prefix));
0 commit comments