Skip to content

Commit

Permalink
fix: strucure of release-please-config file (#2502)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoopDog committed Nov 6, 2024
1 parent 2db53c5 commit dcf3efa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 44 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: Enable Debug Logging
run: echo "DEBUG=release-please" >> $GITHUB_ENV
- uses: googleapis/release-please-action@v4
id: release
with:
config-file: release-please-config.json
# this assumes that you have created a personal access token
# (PAT) and configured it as a GitHub action secret named
# `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
Expand Down
51 changes: 10 additions & 41 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,14 @@
{
"release-type": "node",
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
}
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "section": "Chores" },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles" },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "Continuous Integration" }
]
}

0 comments on commit dcf3efa

Please sign in to comment.