Files
ccs/.releaserc.cjs
T
Tam Nhu Tran 0473f63623 hotfix: add hotfix commit type to semantic-release config
- Add hotfix type to releaseRules (triggers patch release)
- Add Hotfixes section to release notes generator
- Without this, hotfix: commits are silently ignored by semantic-release
2026-03-27 15:03:49 -04:00

125 lines
3.3 KiB
JavaScript

/**
* Semantic Release Configuration
*
* Branch-aware config:
* - dev branch: Uses dev release configuration (prerelease)
* - main branch: Uses production release configuration
*/
const currentBranch =
process.env.GITHUB_REF_NAME ||
process.env.GIT_BRANCH ||
(process.env.GITHUB_REF && process.env.GITHUB_REF.replace('refs/heads/', '')) ||
require('child_process').execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
console.error(`[semantic-release config] Branch: ${currentBranch}`);
// Shared plugin config
const commitAnalyzer = [
'@semantic-release/commit-analyzer',
{
preset: 'conventionalcommits',
releaseRules: [
{ type: 'hotfix', release: 'patch' },
{ type: 'docs', scope: 'README', release: 'patch' },
{ type: 'refactor', release: 'patch' },
{ type: 'style', release: 'patch' },
],
},
];
const releaseNotesGenerator = [
'@semantic-release/release-notes-generator',
{
preset: 'conventionalcommits',
presetConfig: {
types: [
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'hotfix', section: 'Hotfixes' },
{ type: 'docs', section: 'Documentation' },
{ type: 'style', section: 'Styles' },
{ type: 'refactor', section: 'Code Refactoring' },
{ type: 'perf', section: 'Performance Improvements' },
{ type: 'test', section: 'Tests' },
{ type: 'build', section: 'Build System' },
{ type: 'ci', section: 'CI' },
],
},
},
];
// Dev release configuration
const devConfig = {
branches: [
'main', // Required even in dev config
{
name: 'dev',
prerelease: 'dev',
},
],
plugins: [
commitAnalyzer,
releaseNotesGenerator,
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md',
},
],
'@semantic-release/npm',
[
'@semantic-release/github',
{
prerelease: true,
// Disable automatic success comment - custom step in dev-release.yml handles this
successComment: false,
},
],
[
'@semantic-release/git',
{
assets: ['CHANGELOG.md', 'package.json'],
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],
};
// Production release configuration
const productionConfig = {
branches: ['main'],
plugins: [
commitAnalyzer,
releaseNotesGenerator,
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md',
},
],
'@semantic-release/npm',
[
'@semantic-release/github',
{
successComment:
':tada: This issue has been resolved in version ${nextRelease.version} :tada:\n\nThe release is available on:\n- [npm package (@latest)](https://www.npmjs.com/package/@kaitranntt/ccs)\n- [GitHub release](${releases[0].url})',
releasedLabels: ['released'],
},
],
[
'@semantic-release/git',
{
assets: ['CHANGELOG.md', 'package.json'],
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],
};
const config = currentBranch === 'dev' ? devConfig : productionConfig;
console.error(`[semantic-release config] Using ${currentBranch === 'dev' ? 'DEV' : 'PRODUCTION'} config`);
module.exports = config;