Update PR workflow ref logic and branch names #1
Workflow file for this run
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: PR Workflow | |
| on: | |
| push: | |
| branches: | |
| - cd-integeration | |
| pull_request: | |
| branches: | |
| - cd-integeration | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: 'Pull request number to dry run' | |
| required: true | |
| jobs: | |
| dry-run: | |
| name: Dry Run | |
| runs-on: pr-workflow | |
| steps: | |
| - name: Determine target ref | |
| id: target | |
| run: | | |
| if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then | |
| if [ -z "${{ github.event.inputs.pr_number }}" ]; then | |
| echo "pr_number input is required" >&2 | |
| exit 1 | |
| fi | |
| echo "ref=refs/pull/${{ github.event.inputs.pr_number }}/merge" >> "$GITHUB_OUTPUT" | |
| elif [ "${{ github.event_name }}" = "pull_request" ]; then | |
| echo "ref=refs/pull/${{ github.event.pull_request.number }}/merge" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "ref=${{ github.ref }}" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Checkout target | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ steps.target.outputs.ref }} | |
| fetch-depth: 0 | |
| - name: Dry run summary | |
| run: | | |
| echo "=== Dry Run Context ===" | |
| echo "Event : ${{ github.event_name }}" | |
| echo "Repository : ${{ github.repository }}" | |
| echo "Target ref : ${{ steps.target.outputs.ref }}" | |
| echo "Runner label : pr-workflow" | |
| echo "Dry run complete" |