We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4d5b50 + 71006d9 commit 0cf1841Copy full SHA for 0cf1841
1 file changed
.github/workflows/dependabot-major-analysis.yml
@@ -63,7 +63,7 @@ jobs:
63
breakingChanges = `_Unable to determine breaking changes automatically. Please review the [full changelog](https://github.com/${repoSlug}/releases)._`;
64
} else {
65
for (const release of relevantReleases.slice(0, 10)) {
66
- const body = release.body || '_No release notes._';
+ const body = (release.body || '_No release notes._').replace(/(?<=^|\s)@(?=[a-zA-Z0-9])(?![a-zA-Z0-9-]*\/)/gm, '');
67
releaseNotesSummary += `### ${release.tag_name}${release.name && release.name !== release.tag_name ? ' — ' + release.name : ''}\n\n`;
68
releaseNotesSummary += body.substring(0, 2000);
69
if (body.length > 2000) releaseNotesSummary += '\n\n_...truncated_';
0 commit comments