fix: remove content from Message if content is an empty array (#1…
#10
This file contains hidden or 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 Hotfix | |
| on: | |
| push: | |
| branches: | |
| - release/* | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Release | |
| uses: googleapis/release-please-action@v4 | |
| with: | |
| release-type: python | |
| target-branch: ${{ github.ref_name }} | |
| token: ${{ secrets.GH_RELEASE_PAT }} | |
| config-file: .github/release-please-config.hotfix.json | |
| manifest-file: .github/.release-please-manifest.json |