We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf4068 commit 4293ed6Copy full SHA for 4293ed6
1 file changed
.github/workflows/continuous-deployment.yml
@@ -6,8 +6,13 @@ on:
6
types: [completed]
7
8
jobs:
9
- deploy-internal-dev-backend:
+ on-quality-checks-success:
10
if: ${{ github.event.workflow_run.conclusion == 'success' }}
11
+ steps:
12
+ - run: echo 'The Quality Checks workflow passed'
13
+
14
+ deploy-internal-dev-backend:
15
+ needs: [on-quality-checks-success]
16
uses: ./.github/workflows/deploy-backend.yml
17
with:
18
apigee_environment: internal-dev
0 commit comments