Skip to content

Commit

Permalink
ci: set target-branch to release-please action (#872)
Browse files Browse the repository at this point in the history
* ci: explicitly set hidden to false in changelog-sections of release-please config

* ci: add target-branch to release-please args

* ci: add release-type in release-please-config
  • Loading branch information
rmartins90 authored Jan 21, 2025
1 parent c21c8a8 commit dde0fff
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
31 changes: 21 additions & 10 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,47 +4,58 @@
"changelog-path": "CHANGELOG.md"
}
},
"release-type": "node",
"include-component-in-tag": false,
"changelog-sections": [
{
"section": "🚀 Features",
"type": "feat"
"type": "feat",
"hidden": false
},
{
"section": "🐛 Bug Fixes",
"type": "fix"
"type": "fix",
"hidden": false
},
{
"section": "🐛 Bug Fixes",
"type": "style"
"type": "style",
"hidden": false
},
{
"section": "🐛 Bug Fixes",
"type": "perf"
"type": "perf",
"hidden": false
},
{
"section": "🧰 Maintenance",
"type": "refactor"
"type": "refactor",
"hidden": false
},
{
"section": "🧰 Maintenance",
"type": "test"
"type": "test",
"hidden": false
},
{
"section": "🧰 Maintenance",
"type": "build"
"type": "build",
"hidden": false
},
{
"section": "🧰 Maintenance",
"type": "docs"
"type": "docs",
"hidden": false
},
{
"section": "🧰 Maintenance",
"type": "ci"
"type": "ci",
"hidden": false
},
{
"section": "🧰 Maintenance",
"type": "revert"
"type": "revert",
"hidden": false
}
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
target-branch: main
config-file: .github/release-please-config.json
manifest-file: .github/release-please-manifest.json

0 comments on commit dde0fff

Please sign in to comment.