From 82d3c62af994f61e1c3b347e9b3beff801ec4f55 Mon Sep 17 00:00:00 2001 From: Nat Dean-Lewis Date: Tue, 10 Mar 2026 08:49:26 +0000 Subject: [PATCH] CLDC-4236: rename pull_request_id input -> pr_number for consistency --- .github/workflows/review_pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/review_pipeline.yml b/.github/workflows/review_pipeline.yml index 62cb384c4..307aa0381 100644 --- a/.github/workflows/review_pipeline.yml +++ b/.github/workflows/review_pipeline.yml @@ -5,7 +5,7 @@ on: types: [created] workflow_dispatch: inputs: - pull_request_id: + pr_number: required: true type: string description: "The number of the PR for which to deploy a review app. Note: this is NOT the ticket number" @@ -26,7 +26,7 @@ jobs: with: script: | if (context.eventName === 'workflow_dispatch') { - core.setOutput('pr_number', '${{ inputs.pull_request_id }}'); + core.setOutput('pr_number', '${{ inputs.pr_number }}'); } else { core.setOutput('pr_number', context.issue.number.toString()); }