Merge branch 'dev' into main #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# inspired by Leandro Lima https://github.com/leoisl/grp_meeting/blob/main/.github/workflows/release-please.yaml | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
with: | |
release-type: python | |
package-name: amira | |
changelog-types: > | |
[ | |
{ "type": "build", "section": "Build System", "hidden": false }, | |
{ "type": "ci", "section": "Continuous Integration", "hidden": false }, | |
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": false }, | |
{ "type": "docs", "section": "Documentation", "hidden": false }, | |
{ "type": "feat", "section": "Features", "hidden": false }, | |
{ "type": "fix", "section": "Bug Fixes", "hidden": false }, | |
{ "type": "perf", "section": "Performance Improvements", "hidden": false }, | |
{ "type": "refactor", "section": "Code Refactoring", "hidden": false }, | |
{ "type": "style", "section": "Styles", "hidden": false }, | |
{ "type": "test", "section": "Tests", "hidden": false } | |
] | |
token: ${{ secrets.RELEASEPLEASEPAT }} |