Skip to content

Commit

Permalink
chore: Move changelog type to release config
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmechlark committed Sep 8, 2023
1 parent bb7befe commit 01b4d9e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: ruby
changelog-types: '[{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"docs","section":"Documentation","hidden":false},
{"type":"test","section":"Tests","hidden":false},
{"type":"chore","section":"Miscellaneous","hidden":false},
{"type":"ci","section":"Miscellaneous","hidden":false}]'

- name: Push to Release Branch
if: ${{ steps.release.outputs.release_created }}
Expand Down
36 changes: 34 additions & 2 deletions .release-config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
{
"bootstrap-sha": "e37cf205a2dce2de7254a61bc00cda96a5255be7"
}
"bootstrap-sha": "e37cf205a2dce2de7254a61bc00cda96a5255be7",
"changelog-types": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "docs",
"section": "Documentation",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": false
},
{
"type": "ci",
"section": "Miscellaneous",
"hidden": false
}
]
}

0 comments on commit 01b4d9e

Please sign in to comment.