test-reuse-flow #4
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: test-reuse-flow | |
on: | |
# Ability to execute on demand | |
workflow_dispatch: | |
inputs: | |
deployment_name: | |
type: string | |
description: | | |
Name with letters, numbers, hyphens; start with a letter. Max 20 chars. e.g., 'my-env-123' | |
required: true | |
jobs: | |
deploy: | |
uses: ./.github/workflows/reuse-flow.yml | |
with: | |
deployment_name: ${{ inputs.deployment_name }} | |
cdr_infra: true |