From af98a7ad23eaadb9937451713a8c55a73da7f04f Mon Sep 17 00:00:00 2001 From: Samuel Young Date: Tue, 13 Jan 2026 09:57:10 +0000 Subject: [PATCH] CLDC-NONE: Add a manual runner pipeline that can redeploy review app code (#3137) * CLDC-NONE: Add a manual runner pipeline that can redeploy review app code * fixup! CLDC-NONE: Add a manual runner pipeline that can redeploy review app code use correct key id use snake case --- .../workflows/manual_review_code_pipeline.yml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/manual_review_code_pipeline.yml diff --git a/.github/workflows/manual_review_code_pipeline.yml b/.github/workflows/manual_review_code_pipeline.yml new file mode 100644 index 000000000..2ea0719ca --- /dev/null +++ b/.github/workflows/manual_review_code_pipeline.yml @@ -0,0 +1,29 @@ +name: Manual review app code pipeline + +concurrency: + group: review-${{ inputs.review_app_key }} + +on: + workflow_dispatch: + inputs: + review_app_key: + required: true + type: string + description: "The review app ID to deploy code for." + +defaults: + run: + shell: bash + +jobs: + code: + name: Deploy review app code + uses: ./.github/workflows/aws_deploy.yml + with: + aws_account_id: 837698168072 + aws_role_prefix: core-dev + aws_task_prefix: core-review-${{ inputs.review_app_key }} + concurrency_tag: ${{ inputs.review_app_key }} + environment: review + permissions: + id-token: write