@cirrusinvicta/ai-commit-toolkit
Version:
AI-powered conventional commit generation with centralized configuration, OpenAI integration, and automated deployment workflows
182 lines (181 loc) • 4.01 kB
JSON
{
"repositoryUrl": "https://gitlab.com/NETLINK360/cirrus/tools/ai-commit-toolkit.git",
"branches": [
{
"name": "release",
"channel": "latest"
},
{
"name": "testing",
"prerelease": "beta",
"channel": "latest"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "style",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "build",
"release": "patch"
},
{
"type": "ci",
"release": "patch"
},
{
"type": "revert",
"release": "patch"
},
{
"scope": "breaking",
"release": "major"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "🚀 Features",
"hidden": false
},
{
"type": "fix",
"section": "🐛 Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "⚡ Performance Improvements",
"hidden": false
},
{
"type": "revert",
"section": "⏪ Reverts",
"hidden": false
},
{
"type": "docs",
"section": "📚 Documentation",
"hidden": false
},
{
"type": "style",
"section": "💄 Styles",
"hidden": true
},
{
"type": "chore",
"section": "🔧 Maintenance",
"hidden": true
},
{
"type": "refactor",
"section": "♻️ Code Refactoring",
"hidden": true
},
{
"type": "test",
"section": "✅ Tests",
"hidden": true
},
{
"type": "build",
"section": "🏗️ Build System",
"hidden": true
},
{
"type": "ci",
"section": "👷 CI/CD",
"hidden": true
}
]
},
"writerOpts": {
"commitsSort": ["subject", "scope"]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true,
"tarballDir": "dist",
"pkgRoot": "."
}
],
[
"@semantic-release/gitlab",
{
"gitlabUrl": "https://gitlab.com",
"assets": [
{
"path": "dist/*.tgz",
"label": "NPM Package"
},
{
"path": "CHANGELOG.md",
"label": "Changelog"
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
]
]
}