diff --git a/.github/actions/templates/getWorkflowInput/action.yml b/.github/actions/templates/getWorkflowInput/action.yml index b77946b01b..b9a7a25eb3 100644 --- a/.github/actions/templates/getWorkflowInput/action.yml +++ b/.github/actions/templates/getWorkflowInput/action.yml @@ -89,7 +89,7 @@ runs: $workflowInput = @{} foreach($parameterName in $workflowParameters.Keys) { Write-Verbose ('Passing output [{0}] with value [{1}]' -f $parameterName, $workflowParameters[$parameterName]) -Verbose - $workflowInput[$parameterName] = $workflowParameters[$parameterName] + $workflowInput[$parameterName] = $workflowParameters[$parameterName].toString() } Write-Output ('{0}={1}' -f 'workflowInput', ($workflowInput | ConvertTo-Json -Compress)) >> $env:GITHUB_OUTPUT } diff --git a/.github/workflows/ms.aad.domainservices.yml b/.github/workflows/ms.aad.domainservices.yml index c4ab2d7e1e..b1e651de22 100644 --- a/.github/workflows/ms.aad.domainservices.yml +++ b/.github/workflows/ms.aad.domainservices.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.analysisservices.servers.yml b/.github/workflows/ms.analysisservices.servers.yml index 354a489e2c..93aa08e584 100644 --- a/.github/workflows/ms.analysisservices.servers.yml +++ b/.github/workflows/ms.analysisservices.servers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.apimanagement.service.yml b/.github/workflows/ms.apimanagement.service.yml index 524aa5e478..3608448e6e 100644 --- a/.github/workflows/ms.apimanagement.service.yml +++ b/.github/workflows/ms.apimanagement.service.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.appconfiguration.configurationstores.yml b/.github/workflows/ms.appconfiguration.configurationstores.yml index 2f48d44fb4..390a899cff 100644 --- a/.github/workflows/ms.appconfiguration.configurationstores.yml +++ b/.github/workflows/ms.appconfiguration.configurationstores.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.locks.yml b/.github/workflows/ms.authorization.locks.yml index 7cb050452e..32340f9803 100644 --- a/.github/workflows/ms.authorization.locks.yml +++ b/.github/workflows/ms.authorization.locks.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.policyassignments.yml b/.github/workflows/ms.authorization.policyassignments.yml index 237fc3b201..e1dfdb5cd5 100644 --- a/.github/workflows/ms.authorization.policyassignments.yml +++ b/.github/workflows/ms.authorization.policyassignments.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.policydefinitions.yml b/.github/workflows/ms.authorization.policydefinitions.yml index 8bbfe61084..9109b103e1 100644 --- a/.github/workflows/ms.authorization.policydefinitions.yml +++ b/.github/workflows/ms.authorization.policydefinitions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.policyexemptions.yml b/.github/workflows/ms.authorization.policyexemptions.yml index 8ee08bbea5..d5dee7506c 100644 --- a/.github/workflows/ms.authorization.policyexemptions.yml +++ b/.github/workflows/ms.authorization.policyexemptions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.policysetdefinitions.yml b/.github/workflows/ms.authorization.policysetdefinitions.yml index 20fdda4437..5f9d9c296d 100644 --- a/.github/workflows/ms.authorization.policysetdefinitions.yml +++ b/.github/workflows/ms.authorization.policysetdefinitions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.roleassignments.yml b/.github/workflows/ms.authorization.roleassignments.yml index 2259af762e..17e2dac304 100644 --- a/.github/workflows/ms.authorization.roleassignments.yml +++ b/.github/workflows/ms.authorization.roleassignments.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.authorization.roledefinitions.yml b/.github/workflows/ms.authorization.roledefinitions.yml index 02c30d18da..d8243e3ada 100644 --- a/.github/workflows/ms.authorization.roledefinitions.yml +++ b/.github/workflows/ms.authorization.roledefinitions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.automation.automationaccounts.yml b/.github/workflows/ms.automation.automationaccounts.yml index 0716f8914e..dac4b2721b 100644 --- a/.github/workflows/ms.automation.automationaccounts.yml +++ b/.github/workflows/ms.automation.automationaccounts.yml @@ -70,7 +70,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -94,7 +96,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.batch.batchaccounts.yml b/.github/workflows/ms.batch.batchaccounts.yml index f2b0f764de..288df1b0cf 100644 --- a/.github/workflows/ms.batch.batchaccounts.yml +++ b/.github/workflows/ms.batch.batchaccounts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.cache.redis.yml b/.github/workflows/ms.cache.redis.yml index a20b42ba16..721e500cd1 100644 --- a/.github/workflows/ms.cache.redis.yml +++ b/.github/workflows/ms.cache.redis.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.cdn.profiles.yml b/.github/workflows/ms.cdn.profiles.yml index 7250ca84db..15eb3687f0 100644 --- a/.github/workflows/ms.cdn.profiles.yml +++ b/.github/workflows/ms.cdn.profiles.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.cognitiveservices.accounts.yml b/.github/workflows/ms.cognitiveservices.accounts.yml index 2aae071581..5fb487035d 100644 --- a/.github/workflows/ms.cognitiveservices.accounts.yml +++ b/.github/workflows/ms.cognitiveservices.accounts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.availabilitysets.yml b/.github/workflows/ms.compute.availabilitysets.yml index e7c81e302b..068300d088 100644 --- a/.github/workflows/ms.compute.availabilitysets.yml +++ b/.github/workflows/ms.compute.availabilitysets.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.diskencryptionsets.yml b/.github/workflows/ms.compute.diskencryptionsets.yml index 7750a722b7..3adda6012f 100644 --- a/.github/workflows/ms.compute.diskencryptionsets.yml +++ b/.github/workflows/ms.compute.diskencryptionsets.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.disks.yml b/.github/workflows/ms.compute.disks.yml index 6926e35d47..95c8ad17b3 100644 --- a/.github/workflows/ms.compute.disks.yml +++ b/.github/workflows/ms.compute.disks.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.galleries.yml b/.github/workflows/ms.compute.galleries.yml index 84652ccb3e..967dca17b4 100644 --- a/.github/workflows/ms.compute.galleries.yml +++ b/.github/workflows/ms.compute.galleries.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.images.yml b/.github/workflows/ms.compute.images.yml index b4d5deac84..532a3f27aa 100644 --- a/.github/workflows/ms.compute.images.yml +++ b/.github/workflows/ms.compute.images.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.proximityplacementgroups.yml b/.github/workflows/ms.compute.proximityplacementgroups.yml index 6addf0d63c..33ba9f27a1 100644 --- a/.github/workflows/ms.compute.proximityplacementgroups.yml +++ b/.github/workflows/ms.compute.proximityplacementgroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.virtualmachines.yml b/.github/workflows/ms.compute.virtualmachines.yml index 48cfd2c468..3e9fb0403e 100644 --- a/.github/workflows/ms.compute.virtualmachines.yml +++ b/.github/workflows/ms.compute.virtualmachines.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.compute.virtualmachinescalesets.yml b/.github/workflows/ms.compute.virtualmachinescalesets.yml index 5dc4de8c25..4fe84fc5d6 100644 --- a/.github/workflows/ms.compute.virtualmachinescalesets.yml +++ b/.github/workflows/ms.compute.virtualmachinescalesets.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.consumption.budgets.yml b/.github/workflows/ms.consumption.budgets.yml index 6749acfa1a..a4e493c8ff 100644 --- a/.github/workflows/ms.consumption.budgets.yml +++ b/.github/workflows/ms.consumption.budgets.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.containerinstance.containergroups.yml b/.github/workflows/ms.containerinstance.containergroups.yml index f191471636..28cb2096b1 100644 --- a/.github/workflows/ms.containerinstance.containergroups.yml +++ b/.github/workflows/ms.containerinstance.containergroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.containerregistry.registries.yml b/.github/workflows/ms.containerregistry.registries.yml index 92979511db..7321c26a02 100644 --- a/.github/workflows/ms.containerregistry.registries.yml +++ b/.github/workflows/ms.containerregistry.registries.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.containerservice.managedclusters.yml b/.github/workflows/ms.containerservice.managedclusters.yml index 6f7be8937a..bb36a6d18a 100644 --- a/.github/workflows/ms.containerservice.managedclusters.yml +++ b/.github/workflows/ms.containerservice.managedclusters.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.databricks.workspaces.yml b/.github/workflows/ms.databricks.workspaces.yml index 28bc7b1f30..c634296799 100644 --- a/.github/workflows/ms.databricks.workspaces.yml +++ b/.github/workflows/ms.databricks.workspaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.datafactory.factories.yml b/.github/workflows/ms.datafactory.factories.yml index b6e06ce81c..d4e9b5abed 100644 --- a/.github/workflows/ms.datafactory.factories.yml +++ b/.github/workflows/ms.datafactory.factories.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.dataprotection.backupvaults.yml b/.github/workflows/ms.dataprotection.backupvaults.yml index 29bd994aab..c2f0225d1d 100644 --- a/.github/workflows/ms.dataprotection.backupvaults.yml +++ b/.github/workflows/ms.dataprotection.backupvaults.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.dbforpostgresql.flexibleservers.yml b/.github/workflows/ms.dbforpostgresql.flexibleservers.yml index 5d212f710e..da0bc8076b 100644 --- a/.github/workflows/ms.dbforpostgresql.flexibleservers.yml +++ b/.github/workflows/ms.dbforpostgresql.flexibleservers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.desktopvirtualization.applicationgroups.yml b/.github/workflows/ms.desktopvirtualization.applicationgroups.yml index 2126ab5e44..5ac2ca8a8e 100644 --- a/.github/workflows/ms.desktopvirtualization.applicationgroups.yml +++ b/.github/workflows/ms.desktopvirtualization.applicationgroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.desktopvirtualization.hostpools.yml b/.github/workflows/ms.desktopvirtualization.hostpools.yml index e361d42b75..9b67086707 100644 --- a/.github/workflows/ms.desktopvirtualization.hostpools.yml +++ b/.github/workflows/ms.desktopvirtualization.hostpools.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.desktopvirtualization.scalingplans.yml b/.github/workflows/ms.desktopvirtualization.scalingplans.yml index 84dd62ec0a..a068f978eb 100644 --- a/.github/workflows/ms.desktopvirtualization.scalingplans.yml +++ b/.github/workflows/ms.desktopvirtualization.scalingplans.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.desktopvirtualization.workspaces.yml b/.github/workflows/ms.desktopvirtualization.workspaces.yml index e2a1c99c1e..dd56201c46 100644 --- a/.github/workflows/ms.desktopvirtualization.workspaces.yml +++ b/.github/workflows/ms.desktopvirtualization.workspaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.devtestlab.labs.yml b/.github/workflows/ms.devtestlab.labs.yml index 19ece25dc7..16618edec4 100644 --- a/.github/workflows/ms.devtestlab.labs.yml +++ b/.github/workflows/ms.devtestlab.labs.yml @@ -70,7 +70,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -94,7 +96,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.documentdb.databaseaccounts.yml b/.github/workflows/ms.documentdb.databaseaccounts.yml index 8ecccd1503..0cecbf6750 100644 --- a/.github/workflows/ms.documentdb.databaseaccounts.yml +++ b/.github/workflows/ms.documentdb.databaseaccounts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.eventgrid.domains.yml b/.github/workflows/ms.eventgrid.domains.yml index ded13794ab..af22e90369 100644 --- a/.github/workflows/ms.eventgrid.domains.yml +++ b/.github/workflows/ms.eventgrid.domains.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.eventgrid.eventsubscriptions.yml b/.github/workflows/ms.eventgrid.eventsubscriptions.yml index 59c9da6584..ff6efefbce 100644 --- a/.github/workflows/ms.eventgrid.eventsubscriptions.yml +++ b/.github/workflows/ms.eventgrid.eventsubscriptions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.eventgrid.systemtopics.yml b/.github/workflows/ms.eventgrid.systemtopics.yml index 64137fd3c9..5f4c305115 100644 --- a/.github/workflows/ms.eventgrid.systemtopics.yml +++ b/.github/workflows/ms.eventgrid.systemtopics.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.eventgrid.topics.yml b/.github/workflows/ms.eventgrid.topics.yml index e4598996df..4533d5bf23 100644 --- a/.github/workflows/ms.eventgrid.topics.yml +++ b/.github/workflows/ms.eventgrid.topics.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.eventhub.namespaces.yml b/.github/workflows/ms.eventhub.namespaces.yml index c160a0214f..5052749511 100644 --- a/.github/workflows/ms.eventhub.namespaces.yml +++ b/.github/workflows/ms.eventhub.namespaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.healthbot.healthbots.yml b/.github/workflows/ms.healthbot.healthbots.yml index 6b3c472334..6b0ed779c4 100644 --- a/.github/workflows/ms.healthbot.healthbots.yml +++ b/.github/workflows/ms.healthbot.healthbots.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.actiongroups.yml b/.github/workflows/ms.insights.actiongroups.yml index e311fe80f7..7c6582f40b 100644 --- a/.github/workflows/ms.insights.actiongroups.yml +++ b/.github/workflows/ms.insights.actiongroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.activitylogalerts.yml b/.github/workflows/ms.insights.activitylogalerts.yml index 55474a064c..0fa38a3fe4 100644 --- a/.github/workflows/ms.insights.activitylogalerts.yml +++ b/.github/workflows/ms.insights.activitylogalerts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.components.yml b/.github/workflows/ms.insights.components.yml index 25f5ffe326..dca0b0b40a 100644 --- a/.github/workflows/ms.insights.components.yml +++ b/.github/workflows/ms.insights.components.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.datacollectionendpoints.yml b/.github/workflows/ms.insights.datacollectionendpoints.yml index edddf0d4ad..480cdd43ee 100644 --- a/.github/workflows/ms.insights.datacollectionendpoints.yml +++ b/.github/workflows/ms.insights.datacollectionendpoints.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.datacollectionrules.yml b/.github/workflows/ms.insights.datacollectionrules.yml index a8c5f94595..43600089cf 100644 --- a/.github/workflows/ms.insights.datacollectionrules.yml +++ b/.github/workflows/ms.insights.datacollectionrules.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.diagnosticsettings.yml b/.github/workflows/ms.insights.diagnosticsettings.yml index 8697c4e9f9..11a499c71c 100644 --- a/.github/workflows/ms.insights.diagnosticsettings.yml +++ b/.github/workflows/ms.insights.diagnosticsettings.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.metricalerts.yml b/.github/workflows/ms.insights.metricalerts.yml index 491de749e5..be818829d0 100644 --- a/.github/workflows/ms.insights.metricalerts.yml +++ b/.github/workflows/ms.insights.metricalerts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.privatelinkscopes.yml b/.github/workflows/ms.insights.privatelinkscopes.yml index cf6e6ed266..a2c3decb1d 100644 --- a/.github/workflows/ms.insights.privatelinkscopes.yml +++ b/.github/workflows/ms.insights.privatelinkscopes.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.insights.scheduledqueryrules.yml b/.github/workflows/ms.insights.scheduledqueryrules.yml index 7426f7cb9b..74fd42507d 100644 --- a/.github/workflows/ms.insights.scheduledqueryrules.yml +++ b/.github/workflows/ms.insights.scheduledqueryrules.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.keyvault.vaults.yml b/.github/workflows/ms.keyvault.vaults.yml index 47470202c7..f60f0e1e5c 100644 --- a/.github/workflows/ms.keyvault.vaults.yml +++ b/.github/workflows/ms.keyvault.vaults.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.kubernetesconfiguration.extensions.yml b/.github/workflows/ms.kubernetesconfiguration.extensions.yml index 30305dc8d4..a66d0e2328 100644 --- a/.github/workflows/ms.kubernetesconfiguration.extensions.yml +++ b/.github/workflows/ms.kubernetesconfiguration.extensions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.kubernetesconfiguration.fluxconfigurations.yml b/.github/workflows/ms.kubernetesconfiguration.fluxconfigurations.yml index 72472595be..d2a9c37301 100644 --- a/.github/workflows/ms.kubernetesconfiguration.fluxconfigurations.yml +++ b/.github/workflows/ms.kubernetesconfiguration.fluxconfigurations.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.logic.workflows.yml b/.github/workflows/ms.logic.workflows.yml index b0f89e56d0..1f024826ae 100644 --- a/.github/workflows/ms.logic.workflows.yml +++ b/.github/workflows/ms.logic.workflows.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.machinelearningservices.workspaces.yml b/.github/workflows/ms.machinelearningservices.workspaces.yml index 0731a599c7..54d2a39e72 100644 --- a/.github/workflows/ms.machinelearningservices.workspaces.yml +++ b/.github/workflows/ms.machinelearningservices.workspaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.maintenance.maintenanceconfigurations.yml b/.github/workflows/ms.maintenance.maintenanceconfigurations.yml index a751caa345..ef686ed074 100644 --- a/.github/workflows/ms.maintenance.maintenanceconfigurations.yml +++ b/.github/workflows/ms.maintenance.maintenanceconfigurations.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.managedidentity.userassignedidentities.yml b/.github/workflows/ms.managedidentity.userassignedidentities.yml index bd3fd31c6c..818e94b1a6 100644 --- a/.github/workflows/ms.managedidentity.userassignedidentities.yml +++ b/.github/workflows/ms.managedidentity.userassignedidentities.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.managedservices.registrationdefinitions.yml b/.github/workflows/ms.managedservices.registrationdefinitions.yml index 0eb2cf122f..1e0e917f07 100644 --- a/.github/workflows/ms.managedservices.registrationdefinitions.yml +++ b/.github/workflows/ms.managedservices.registrationdefinitions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.management.managementgroups.yml b/.github/workflows/ms.management.managementgroups.yml index cd0bcea3a6..2ecedd99ef 100644 --- a/.github/workflows/ms.management.managementgroups.yml +++ b/.github/workflows/ms.management.managementgroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.netapp.netappaccounts.yml b/.github/workflows/ms.netapp.netappaccounts.yml index a4c80a92ef..24e6637c97 100644 --- a/.github/workflows/ms.netapp.netappaccounts.yml +++ b/.github/workflows/ms.netapp.netappaccounts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.applicationgateways.yml b/.github/workflows/ms.network.applicationgateways.yml index b8f21b32e0..9430504254 100644 --- a/.github/workflows/ms.network.applicationgateways.yml +++ b/.github/workflows/ms.network.applicationgateways.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.applicationgatewaywebapplicationfirewallpolicies.yml b/.github/workflows/ms.network.applicationgatewaywebapplicationfirewallpolicies.yml index 0ee4a3e033..f837db0559 100644 --- a/.github/workflows/ms.network.applicationgatewaywebapplicationfirewallpolicies.yml +++ b/.github/workflows/ms.network.applicationgatewaywebapplicationfirewallpolicies.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.applicationsecuritygroups.yml b/.github/workflows/ms.network.applicationsecuritygroups.yml index 563eb35150..1a4ad0cc88 100644 --- a/.github/workflows/ms.network.applicationsecuritygroups.yml +++ b/.github/workflows/ms.network.applicationsecuritygroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.azurefirewalls.yml b/.github/workflows/ms.network.azurefirewalls.yml index 629a6f689e..491d01301d 100644 --- a/.github/workflows/ms.network.azurefirewalls.yml +++ b/.github/workflows/ms.network.azurefirewalls.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.bastionhosts.yml b/.github/workflows/ms.network.bastionhosts.yml index a075a1d924..2d8fc589c8 100644 --- a/.github/workflows/ms.network.bastionhosts.yml +++ b/.github/workflows/ms.network.bastionhosts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.connections.yml b/.github/workflows/ms.network.connections.yml index 6d1522ea53..b35c26aa37 100644 --- a/.github/workflows/ms.network.connections.yml +++ b/.github/workflows/ms.network.connections.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.ddosprotectionplans.yml b/.github/workflows/ms.network.ddosprotectionplans.yml index 1543bd1526..20da2634c1 100644 --- a/.github/workflows/ms.network.ddosprotectionplans.yml +++ b/.github/workflows/ms.network.ddosprotectionplans.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.dnsresolvers.yml b/.github/workflows/ms.network.dnsresolvers.yml index 18083d7ec8..c622c86c5f 100644 --- a/.github/workflows/ms.network.dnsresolvers.yml +++ b/.github/workflows/ms.network.dnsresolvers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.expressroutecircuits.yml b/.github/workflows/ms.network.expressroutecircuits.yml index 1c798a7efc..71ba3bdaab 100644 --- a/.github/workflows/ms.network.expressroutecircuits.yml +++ b/.github/workflows/ms.network.expressroutecircuits.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.firewallpolicies.yml b/.github/workflows/ms.network.firewallpolicies.yml index 1fc96b6c39..e0645637e1 100644 --- a/.github/workflows/ms.network.firewallpolicies.yml +++ b/.github/workflows/ms.network.firewallpolicies.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.frontdoors.yml b/.github/workflows/ms.network.frontdoors.yml index 252cfc9198..167c62929d 100644 --- a/.github/workflows/ms.network.frontdoors.yml +++ b/.github/workflows/ms.network.frontdoors.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.ipgroups.yml b/.github/workflows/ms.network.ipgroups.yml index 3b69c748e6..2cb8be2733 100644 --- a/.github/workflows/ms.network.ipgroups.yml +++ b/.github/workflows/ms.network.ipgroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.loadbalancers.yml b/.github/workflows/ms.network.loadbalancers.yml index 81c1d275b4..d8867c95d0 100644 --- a/.github/workflows/ms.network.loadbalancers.yml +++ b/.github/workflows/ms.network.loadbalancers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.localnetworkgateways.yml b/.github/workflows/ms.network.localnetworkgateways.yml index 801095733b..013f095b27 100644 --- a/.github/workflows/ms.network.localnetworkgateways.yml +++ b/.github/workflows/ms.network.localnetworkgateways.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.natgateways.yml b/.github/workflows/ms.network.natgateways.yml index cc53527ca1..6f4542525a 100644 --- a/.github/workflows/ms.network.natgateways.yml +++ b/.github/workflows/ms.network.natgateways.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.networkinterfaces.yml b/.github/workflows/ms.network.networkinterfaces.yml index e43d89e579..f2664e31a4 100644 --- a/.github/workflows/ms.network.networkinterfaces.yml +++ b/.github/workflows/ms.network.networkinterfaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.networkmanagers.yml b/.github/workflows/ms.network.networkmanagers.yml index 261c129992..e2f25b0013 100644 --- a/.github/workflows/ms.network.networkmanagers.yml +++ b/.github/workflows/ms.network.networkmanagers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.networksecuritygroups.yml b/.github/workflows/ms.network.networksecuritygroups.yml index 99007f2ea3..7cca2687e0 100644 --- a/.github/workflows/ms.network.networksecuritygroups.yml +++ b/.github/workflows/ms.network.networksecuritygroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.networkwatchers.yml b/.github/workflows/ms.network.networkwatchers.yml index 3c08e7dc9d..f9d8efeec0 100644 --- a/.github/workflows/ms.network.networkwatchers.yml +++ b/.github/workflows/ms.network.networkwatchers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.privatednszones.yml b/.github/workflows/ms.network.privatednszones.yml index 2a4cc4c8ff..21c07623b2 100644 --- a/.github/workflows/ms.network.privatednszones.yml +++ b/.github/workflows/ms.network.privatednszones.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.privateendpoints.yml b/.github/workflows/ms.network.privateendpoints.yml index 984c87860e..99643c6563 100644 --- a/.github/workflows/ms.network.privateendpoints.yml +++ b/.github/workflows/ms.network.privateendpoints.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.privatelinkservices.yml b/.github/workflows/ms.network.privatelinkservices.yml index e0a7c5bae0..f11b2f5f50 100644 --- a/.github/workflows/ms.network.privatelinkservices.yml +++ b/.github/workflows/ms.network.privatelinkservices.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.publicipaddresses.yml b/.github/workflows/ms.network.publicipaddresses.yml index b1bfecdb77..c3a01359f8 100644 --- a/.github/workflows/ms.network.publicipaddresses.yml +++ b/.github/workflows/ms.network.publicipaddresses.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.publicipprefixes.yml b/.github/workflows/ms.network.publicipprefixes.yml index 2ea27907f2..361321a63c 100644 --- a/.github/workflows/ms.network.publicipprefixes.yml +++ b/.github/workflows/ms.network.publicipprefixes.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.routetables.yml b/.github/workflows/ms.network.routetables.yml index 25ca2c5c1a..805b1026d6 100644 --- a/.github/workflows/ms.network.routetables.yml +++ b/.github/workflows/ms.network.routetables.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.trafficmanagerprofiles.yml b/.github/workflows/ms.network.trafficmanagerprofiles.yml index c395824e60..56036e866a 100644 --- a/.github/workflows/ms.network.trafficmanagerprofiles.yml +++ b/.github/workflows/ms.network.trafficmanagerprofiles.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.virtualhubs.yml b/.github/workflows/ms.network.virtualhubs.yml index ff147d1c41..824fc6507e 100644 --- a/.github/workflows/ms.network.virtualhubs.yml +++ b/.github/workflows/ms.network.virtualhubs.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.virtualnetworkgateways.yml b/.github/workflows/ms.network.virtualnetworkgateways.yml index 20ef098804..67f67a0742 100644 --- a/.github/workflows/ms.network.virtualnetworkgateways.yml +++ b/.github/workflows/ms.network.virtualnetworkgateways.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.virtualnetworks.yml b/.github/workflows/ms.network.virtualnetworks.yml index 817343262f..91bc852199 100644 --- a/.github/workflows/ms.network.virtualnetworks.yml +++ b/.github/workflows/ms.network.virtualnetworks.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.virtualwans.yml b/.github/workflows/ms.network.virtualwans.yml index 04084ad551..2422c3b0ad 100644 --- a/.github/workflows/ms.network.virtualwans.yml +++ b/.github/workflows/ms.network.virtualwans.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.vpngateways.yml b/.github/workflows/ms.network.vpngateways.yml index 7a5fb92dcd..38de430dbd 100644 --- a/.github/workflows/ms.network.vpngateways.yml +++ b/.github/workflows/ms.network.vpngateways.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.network.vpnsites.yml b/.github/workflows/ms.network.vpnsites.yml index eba749352a..6ff79b0a3c 100644 --- a/.github/workflows/ms.network.vpnsites.yml +++ b/.github/workflows/ms.network.vpnsites.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.operationalinsights.workspaces.yml b/.github/workflows/ms.operationalinsights.workspaces.yml index 2565429085..8082e9b2ac 100644 --- a/.github/workflows/ms.operationalinsights.workspaces.yml +++ b/.github/workflows/ms.operationalinsights.workspaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.operationsmanagement.solutions.yml b/.github/workflows/ms.operationsmanagement.solutions.yml index 5be4fb9d8c..d17ab00fd4 100644 --- a/.github/workflows/ms.operationsmanagement.solutions.yml +++ b/.github/workflows/ms.operationsmanagement.solutions.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.policyinsights.remediations.yml b/.github/workflows/ms.policyinsights.remediations.yml index aba8311a05..1def3cfb8d 100644 --- a/.github/workflows/ms.policyinsights.remediations.yml +++ b/.github/workflows/ms.policyinsights.remediations.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.powerbidedicated.capacities.yml b/.github/workflows/ms.powerbidedicated.capacities.yml index 92326f233b..9e89886e2c 100644 --- a/.github/workflows/ms.powerbidedicated.capacities.yml +++ b/.github/workflows/ms.powerbidedicated.capacities.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.recoveryservices.vaults.yml b/.github/workflows/ms.recoveryservices.vaults.yml index 84b0006bb2..b9e9ba0784 100644 --- a/.github/workflows/ms.recoveryservices.vaults.yml +++ b/.github/workflows/ms.recoveryservices.vaults.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.resources.deploymentscripts.yml b/.github/workflows/ms.resources.deploymentscripts.yml index 6b3360afc2..dd93ffac59 100644 --- a/.github/workflows/ms.resources.deploymentscripts.yml +++ b/.github/workflows/ms.resources.deploymentscripts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.resources.resourcegroups.yml b/.github/workflows/ms.resources.resourcegroups.yml index 3d25258aa1..24c82d4382 100644 --- a/.github/workflows/ms.resources.resourcegroups.yml +++ b/.github/workflows/ms.resources.resourcegroups.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.resources.tags.yml b/.github/workflows/ms.resources.tags.yml index 1a95f3244b..6db292d79b 100644 --- a/.github/workflows/ms.resources.tags.yml +++ b/.github/workflows/ms.resources.tags.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.security.azuresecuritycenter.yml b/.github/workflows/ms.security.azuresecuritycenter.yml index 28af64e61b..a092847dd9 100644 --- a/.github/workflows/ms.security.azuresecuritycenter.yml +++ b/.github/workflows/ms.security.azuresecuritycenter.yml @@ -69,7 +69,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -93,7 +95,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.servicebus.namespaces.yml b/.github/workflows/ms.servicebus.namespaces.yml index 41ab8ee57a..a2aca4296b 100644 --- a/.github/workflows/ms.servicebus.namespaces.yml +++ b/.github/workflows/ms.servicebus.namespaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.servicefabric.clusters.yml b/.github/workflows/ms.servicefabric.clusters.yml index 603c63b626..f270442bab 100644 --- a/.github/workflows/ms.servicefabric.clusters.yml +++ b/.github/workflows/ms.servicefabric.clusters.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.signalrservice.signalr.yml b/.github/workflows/ms.signalrservice.signalr.yml index b558591b46..0d28c638e0 100644 --- a/.github/workflows/ms.signalrservice.signalr.yml +++ b/.github/workflows/ms.signalrservice.signalr.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.signalrservice.webpubsub.yml b/.github/workflows/ms.signalrservice.webpubsub.yml index 569370f1f1..958d6a63f5 100644 --- a/.github/workflows/ms.signalrservice.webpubsub.yml +++ b/.github/workflows/ms.signalrservice.webpubsub.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.sql.managedinstances.yml b/.github/workflows/ms.sql.managedinstances.yml index 87826fa65e..6113578641 100644 --- a/.github/workflows/ms.sql.managedinstances.yml +++ b/.github/workflows/ms.sql.managedinstances.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.sql.servers.yml b/.github/workflows/ms.sql.servers.yml index 2db6477e12..2383d12993 100644 --- a/.github/workflows/ms.sql.servers.yml +++ b/.github/workflows/ms.sql.servers.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.storage.storageaccounts.yml b/.github/workflows/ms.storage.storageaccounts.yml index df3c30308c..d08a0d78db 100644 --- a/.github/workflows/ms.storage.storageaccounts.yml +++ b/.github/workflows/ms.storage.storageaccounts.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.synapse.privatelinkhubs.yml b/.github/workflows/ms.synapse.privatelinkhubs.yml index 69ae74a42c..3a486a9c7c 100644 --- a/.github/workflows/ms.synapse.privatelinkhubs.yml +++ b/.github/workflows/ms.synapse.privatelinkhubs.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.synapse.workspaces.yml b/.github/workflows/ms.synapse.workspaces.yml index b08c746e22..1be5d29eda 100644 --- a/.github/workflows/ms.synapse.workspaces.yml +++ b/.github/workflows/ms.synapse.workspaces.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.virtualmachineimages.imagetemplates.yml b/.github/workflows/ms.virtualmachineimages.imagetemplates.yml index 10fa7c4d97..1702a25f8f 100644 --- a/.github/workflows/ms.virtualmachineimages.imagetemplates.yml +++ b/.github/workflows/ms.virtualmachineimages.imagetemplates.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.web.connections.yml b/.github/workflows/ms.web.connections.yml index d62cc15674..82aec55098 100644 --- a/.github/workflows/ms.web.connections.yml +++ b/.github/workflows/ms.web.connections.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.web.hostingenvironments.yml b/.github/workflows/ms.web.hostingenvironments.yml index 91693b70f4..d336692e1b 100644 --- a/.github/workflows/ms.web.hostingenvironments.yml +++ b/.github/workflows/ms.web.hostingenvironments.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.web.serverfarms.yml b/.github/workflows/ms.web.serverfarms.yml index aa99121c12..63c450d0c5 100644 --- a/.github/workflows/ms.web.serverfarms.yml +++ b/.github/workflows/ms.web.serverfarms.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.web.sites.yml b/.github/workflows/ms.web.sites.yml index c4973b6bfd..66e75c4283 100644 --- a/.github/workflows/ms.web.sites.yml +++ b/.github/workflows/ms.web.sites.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline diff --git a/.github/workflows/ms.web.staticsites.yml b/.github/workflows/ms.web.staticsites.yml index a71f31534b..0fdbe10656 100644 --- a/.github/workflows/ms.web.staticsites.yml +++ b/.github/workflows/ms.web.staticsites.yml @@ -79,7 +79,9 @@ jobs: job_module_static_validation: runs-on: ubuntu-20.04 name: 'Static validation' - if: github.event.inputs.staticValidation == 'true' + if: (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).staticValidation == 'true' + needs: + - job_initialize_pipeline steps: - name: 'Checkout' uses: actions/checkout@v3 @@ -103,7 +105,7 @@ jobs: name: 'Deploying' if: | !cancelled() && - github.event.inputs.deploymentValidation == 'true' && + (fromJson(needs.job_initialize_pipeline.outputs.workflowInput)).deploymentValidation == 'true' && needs.job_module_static_validation.conclusion != 'failed' needs: - job_initialize_pipeline