Files
onearmy-community-platform/.releaserc.json
Luke Watts 8f7fc6830a chore(ci): use single branch pattern for deployments (#3568)
* chore(ci): remove dependency on master

* chore(ci): introduce approval step

* chore(ci): remove branch filter

* docs: remove mention of production branches

* chore(ci): remove defunct code paths
2024-05-21 23:35:53 +02:00

24 lines
586 B
JSON

{
"branches": ["master"],
"ci": false,
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{ "type": "docs", "scope": "README", "release": "patch" },
{ "type": "refactor", "release": "patch" },
{ "type": "style", "release": "patch" }
],
"parserOpts": {
"noteKeywords": ["MAJOR VERSION", "MAJOR VERSIONS"]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/changelog"
]
}