CI: Trigger release pr workflow when a release is completed (#89062)

This commit is contained in:
Kevin Minehart
2024-06-12 08:48:50 -05:00
committed by GitHub
parent 13d00e09ab
commit c6d807e015
3 changed files with 101 additions and 2 deletions

View File

@@ -57,6 +57,6 @@ jobs:
- name: Create PR with backports
if: "${{ github.event.inputs.backport != '' }}"
run: >
gh pr create -l "backport-${{ inputs.backport }}" --dry-run=${{ inputs.dry_run }} -H "release/${{ inputs.version }}" -B "${{ inputs.target }}" --title "Release: ${{ inputs.version }}" --body "These code changes must be merged after a release is complete"
gh pr create -l "backport ${{ inputs.backport }}" --dry-run=${{ inputs.dry_run }} -H "release/${{ inputs.version }}" -B "${{ inputs.target }}" --title "Release: ${{ inputs.version }}" --body "These code changes must be merged after a release is complete"
env:
GH_TOKEN: ${{ steps.generate_token.outputs.token }}