chore(main): release 1.19.10 #26
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 Please | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| concurrency: | |
| group: release-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: release | |
| uses: googleapis/release-please-action@v5 | |
| with: | |
| token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| # Enable native auto-merge and stop; GitHub rebase-merges once the required | |
| # checks pass, and that PAT-authored merge is a push to main that both | |
| # re-triggers this workflow to cut the tag/release and triggers the deploy | |
| # (on: push), so no explicit deploy dispatch is needed here. | |
| - if: ${{ steps.release.outputs.pr }} | |
| env: | |
| GH_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
| REPO: ${{ github.repository }} | |
| PR_JSON: ${{ steps.release.outputs.pr }} | |
| run: gh pr merge --rebase --auto -R "$REPO" "$(echo "$PR_JSON" | jq -r .number)" |