Deploying account wide to nonprod workspace - dev #227
This file contains 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: "Deploy: Account Wide - Nonprod" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
account: | ||
description: Account to deploy | ||
required: true | ||
default: dev | ||
type: choice | ||
options: | ||
- dev | ||
- qa | ||
- int | ||
- ref | ||
- mgmt | ||
jobs: | ||
deploy: | ||
uses: ./.github/workflows/_deploy.yml | ||
Check failure on line 19 in .github/workflows/deploy-account-wide-resources.yml GitHub Actions / Deploy: Account Wide - NonprodInvalid workflow file
|
||
with: | ||
account: ${{ inputs.account }} | ||
workspace: ${{ inputs.account }} | ||
scope: "per_account/${{ inputs.account }}" | ||
secrets: inherit # pragma: allowlist secret | ||
run-name: Deploying account wide to nonprod workspace - ${{ inputs.account }} |