Auto approval api version update (#513) #2
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: STRR EMAIL CD | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- feature* | ||
- hotfix* | ||
- release* | ||
paths: | ||
- "queue_services/strr-email/**" | ||
workflow_dispatch: | ||
inputs: | ||
target: | ||
description: "Deploy To" | ||
required: true | ||
type: choice | ||
options: | ||
- "dev" | ||
- "test" | ||
- "sandbox" | ||
- "prod" | ||
redeploy: | ||
description: "Redeploy Application" | ||
required: true | ||
type: choice | ||
options: | ||
- "false" | ||
- "true" | ||
jobs: | ||
strr-email-cd: | ||
Check failure on line 32 in .github/workflows/strr-email-cd.yaml GitHub Actions / STRR EMAIL CDInvalid workflow file
|
||
uses: bcgov/bcregistry-sre/.github/workflows/backend-cd.yaml@main | ||
with: | ||
target: ${{ inputs.target }} | ||
app_name: "strr-email" | ||
working_directory: "queue_services/strr-email" | ||
redeploy: ${{ inputs.redeploy }} | ||
secrets: | ||
WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | ||
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} |