Skip to content

Commit

Permalink
chore: Add types to release notes and disable release commenting on i…
Browse files Browse the repository at this point in the history
…ssues and PRs

Signed-off-by: Sietze van Buuren <s.van.buuren@gmail.com>
  • Loading branch information
swvanbuuren committed Jan 27, 2025
1 parent 1f052aa commit ef92177
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,31 @@
"branches": ["master", "next"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"presetConfig":
{
"types": [
{"type": "feat", "section": "✨ New Features"},
{"type": "fix", "section": "🐛 Bug Fixes"},
{"type": "chore", "section": "🔧 Chore"},
{"type": "ci", "section": "👷 Chore"},
{"type": "docs", "section": "📝 Documentation"},
{"type": "style", "section": "🎨 Style"},
{"type": "refactor", "section": "♻️ Refactors"},
{"type": "perf", "section": "⚡ Performance Improvements"},
{"type": "test", "section": "✅ Tests"}
]
}
}
],
[
"@semantic-release/github",
{
"successComment": false
}
]
]
}

0 comments on commit ef92177

Please sign in to comment.