Skip to content

Commit

Permalink
chore: move release-please config
Browse files Browse the repository at this point in the history
  • Loading branch information
jpvmrcd committed Sep 24, 2024
1 parent ec7aaed commit abe9044
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ jobs:
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: calendar
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"revert","section":"Reverts","hidden":false}]'
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.0"
}
".": "0.1.1"
}
27 changes: 25 additions & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,36 @@
{
"packages": {
".": {
"package-name": "calendar",
"changelog-path": "CHANGELOG.md",
"release-type": "node",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"prerelease": false,
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": false
},
{
"type": "revert",
"section": "Reverts",
"hidden": false
}
]
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
}

0 comments on commit abe9044

Please sign in to comment.