Skip to content

Commit

Permalink
build(release-please): update config
Browse files Browse the repository at this point in the history
  • Loading branch information
dschach committed Feb 22, 2023
1 parent 553a5c9 commit 16ae4df
Showing 1 changed file with 24 additions and 10 deletions.
34 changes: 24 additions & 10 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"package-name": ""
}
},
"bump-minor-pre-major": false,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"prerelease": true,
"draft": false,
"changelog-path": "CHANGELOG.md",
"include-v-in-tag": true,
"plugins": [
"plugins": [{ "type": "sentence-case" }],
"release-type": "salesforce",
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"extra-files": [
{
"type": "sentence-case"
"type": "json",
"path": "package.json",
"jsonpath": "$.version"
}
],
"release-type": "salesforce",
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
"changelog-sections": [
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false },
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
{ "type": "revert", "section": "Reverts", "hidden": false },
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
{ "type": "style", "section": "Styles", "hidden": false },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "build", "section": "Build System", "hidden": false },
{ "type": "ci", "section": "Continuous Integration", "hidden": false },
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": false }
]
}

0 comments on commit 16ae4df

Please sign in to comment.