Skip to content

Commit

Permalink
ci: Configure release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmechlark committed Jan 27, 2024
1 parent c3c2bda commit a3cd57a
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,7 @@ jobs:
id: release
with:
token: ${{ secrets.DEVOPS_TOKEN }}
release-type: ruby
version-file: lib/devise/auth0/version.rb
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"docs","section":"Documentation","hidden":true},{"type":"test","section":"Tests","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"ci","section":"Miscellaneous","hidden":true}]'
release-type: ''

- name: Push to Release Branch
if: ${{ steps.release.outputs.release_created }}
Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.1.0"
}
51 changes: 51 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": false,
"include-v-in-tag": true,
"packages": {
".": {
"package-name": "devise_auth0",
"release-type": "ruby",
"extra-files": [
"lib/devise/auth0/version.rb"
],
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements",
"hidden": false
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": false
},
{
"type": "ci",
"section": "Miscellaneous",
"hidden": true
}
]
}
}
}

0 comments on commit a3cd57a

Please sign in to comment.