Skip to content

Commit

Permalink
feat(release): add release-please configuration files
Browse files Browse the repository at this point in the history
Add `.release-please-manifest.json` and `release-please-config.json` files to configure release-please. The configuration file specifies that the changelog is located at `CHANGELOG.md` and that the package should not be bumped to a minor version for pre-major changes.
  • Loading branch information
mdwitr0 committed Jun 25, 2023
1 parent de6d2cc commit 4b25545
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .release-please-manifest.json.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.0.0"
}
12 changes: 12 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 4b25545

Please sign in to comment.