Browse Source

fixup! CLDC-NONE: Add a manual runner pipeline that can redeploy review app code

use correct key id

use snake case
CLDC-NONE-add-manual-deploy-code-pipeline
Samuel Young 1 day ago
parent
commit
424cd6e128
  1. 8
      .github/workflows/manual_review_code_pipeline.yml

8
.github/workflows/manual_review_code_pipeline.yml

@ -1,12 +1,12 @@
name: Manual review app code pipeline name: Manual review app code pipeline
concurrency: concurrency:
group: review-${{ inputs.key }} group: review-${{ inputs.review_app_key }}
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
review-app-key: review_app_key:
required: true required: true
type: string type: string
description: "The review app ID to deploy code for." description: "The review app ID to deploy code for."
@ -22,8 +22,8 @@ jobs:
with: with:
aws_account_id: 837698168072 aws_account_id: 837698168072
aws_role_prefix: core-dev aws_role_prefix: core-dev
aws_task_prefix: core-review-${{ inputs.key }} aws_task_prefix: core-review-${{ inputs.review_app_key }}
concurrency_tag: ${{ inputs.key }} concurrency_tag: ${{ inputs.review_app_key }}
environment: review environment: review
permissions: permissions:
id-token: write id-token: write

Loading…
Cancel
Save