Skip to content

Commit

Permalink
chore: Use manifest for release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Oct 18, 2023
1 parent 6bff88c commit 9a3050e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 39 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,7 @@ jobs:
id: release
with:
release-type: node
package-name: cspell-action
changelog-types: |
[
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "feature", "section": "Features" },
{ "type": "fix", "section": "Updates and Bug Fixes", "hidden": false },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "ci", "section": "Continuous Integration", "hidden": false },
{ "type": "chore", "section": "Miscellaneous", "hidden": false },
{ "type": "revert", "section": "Reverts" },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles", "hidden": false },
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false },
{ "type": "build", "section": "Build System", "hidden": false }
]
command: manifest

# The logic below handles the npm publication:
- uses: actions/checkout@v4
Expand Down
60 changes: 37 additions & 23 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,73 @@
{
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
"type": "",
"section": "Changes",
"hidden": true
},
{
"type": "feature",
"section": "Features"
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "fix",
"section": "Updates and Bug Fixes",
"type": "chore",
"section": "Miscellaneous",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous",
"type": "deps",
"section": "Dependencies",
"hidden": true
},
{
"type": "revert",
"section": "Reverts"
"type": "docs",
"section": "Documentation"
},
{
"type": "docs",
"type": "doc",
"section": "Documentation"
},
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Updates and Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
"type": "revert",
"section": "Reverts"
},
{
"type": "build",
"section": "Build System",
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "",
"section": "Changes",
"type": "test",
"section": "Tests",
"hidden": true
}
],
Expand Down

0 comments on commit 9a3050e

Please sign in to comment.