chore!: harmonize CLI flags, rename CLI entry point and add tests for the CLI (DEV-2525) #397
Workflow file for this run
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
--- | |
name: Release-Please | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
release-please: | |
# triggered when a PR is merged into main | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
release-type: python | |
package-name: dsp-tools | |
changelog-types: >- | |
[ | |
{"type": "feat", "section": "Enhancements", "hidden": false }, | |
{"type": "fix", "section": "Bug Fixes", "hidden": false }, | |
{"type": "chore", "section": "Maintenance", "hidden": false }, | |
{"type": "refactor", "section": "Maintenance", "hidden": false }, | |
{"type": "docs", "section": "Documentation", "hidden": false } | |
] | |
pull-request-title-pattern: 'chore: release ${version}' |