Auto Create Release PR #21369
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: Auto Create Release PR | |
| on: | |
| create: | |
| jobs: | |
| extract: | |
| # Only run for release branch creation (not tags or other branches) | |
| if: startsWith(github.ref, 'refs/heads/release/') | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| outputs: | |
| semver: ${{ steps.out.outputs.semver }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - id: out | |
| shell: bash | |
| run: | | |
| .github/scripts/extract-semver.sh | |
| call-create-release-pr: | |
| needs: extract | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| uses: ./.github/workflows/create-release-pr.yml | |
| secrets: | |
| github-token: ${{ secrets.PR_TOKEN }} | |
| google-application-creds-base64: ${{ secrets.GCP_RLS_SHEET_ACCOUNT_BASE64 }} | |
| with: | |
| semver-version: ${{ needs.extract.outputs.semver }} |