Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .releaserc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ module.exports = {
'@semantic-release/git',
{
assets: ['package.json', 'CHANGELOG.md'],
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
// Intentional: no `[skip ci]` suffix. The release commit must
// trigger CodeQL so SAST scoring covers it (refs TIM-122 —
// SAST score 24/27). Release-only changes touch CHANGELOG.md
// and the package.json version bump, both cheap for CodeQL.
message: 'chore(release): ${nextRelease.version}\n\n${nextRelease.notes}',
},
],
[
Expand Down