Adding a wrapper workflow to call the deploy tests #2
Workflow file for this run
This file contains hidden or 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: Trigger Secure Deploy | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| run_deploy_operator: | ||
| description: 'Run deploy operator and deployment tests' | ||
| required: false | ||
| default: false | ||
| type: boolean | ||
| target_branch: | ||
| description: 'Branch to run deploy tests on' | ||
| required: false | ||
| default: 'main' | ||
| type: string | ||
| jobs: | ||
| call-container-validation: | ||
| uses: ./.github/workflows/container-validation-backends.yml | ||
| with: | ||
| run_deploy_operator: ${{ github.event.inputs.run_deploy_operator }} | ||
| target_branch: ${{ github.event.inputs.target_branch }} | ||
| environment: protected-deploy # manual approval before triggering | ||