Skip to content

Commit 27f6f17

Browse files
committed
update issue links
1 parent f69a2d1 commit 27f6f17

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/mirror-changelog.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ jobs:
8686
8787
// remove zero-width space character
8888
originalContent = originalContent.replace(/\u200B/g, '');
89+
90+
// Change issue links from #1234 to genai-toolbox#1234
91+
originalContent = originalContent.replace(/\[#(\d+)\](\([^)]+\))/g, '[genai-toolbox#$1]$2');
8992
const lineAsLowerCase = originalContent.toLowerCase();
9093
9194
const hasPrefix = prefixesToFilter.some(prefix => lineAsLowerCase.includes(prefix));

0 commit comments

Comments
 (0)