Skip to content

chore(main): release 1.7.6 #327

chore(main): release 1.7.6

chore(main): release 1.7.6 #327

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)"