Skip to content

Commit

Permalink
chore: upgrade release-please (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored May 19, 2024
1 parent 210f19a commit f79d82c
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 18 deletions.
20 changes: 2 additions & 18 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,10 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v3
- uses: googleapis/release-please-action@v4
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 }
]
release-type: simple

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

0 comments on commit f79d82c

Please sign in to comment.