superlint/.github/release-please/release-please-config.json
Marco Ferrari ace79ca403
build: ignore changelog when linting codebase (#5205)
CHANGELOG.md is automatically generated by the release workflow.
Ignore it when linting the codebase because it might not pass textlint
validation because of lowercase terms.
2024-01-31 10:31:06 +01:00

40 lines
772 B
JSON

{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"changelog-sections": [
{
"section": "🚀 Features",
"type": "feat"
},
{
"section": "🐛 Bugfixes",
"type": "fix"
},
{
"section": "⬆️ Dependency updates",
"type": "deps"
},
{
"section": "🧰 Maintenance",
"type": "build"
},
{
"section": "🧰 Maintenance",
"type": "chore"
},
{
"section": "🧰 Maintenance",
"type": "ci"
}
],
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "simple",
"extra-files": [
"action.yml",
"README.md",
"slim/action.yml"
]
}
}
}