Skip to content

Commit 4293ed6

Browse files
committed
workflow_run II
1 parent 2bf4068 commit 4293ed6

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/continuous-deployment.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ on:
66
types: [completed]
77

88
jobs:
9-
deploy-internal-dev-backend:
9+
on-quality-checks-success:
1010
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]
1116
uses: ./.github/workflows/deploy-backend.yml
1217
with:
1318
apigee_environment: internal-dev

0 commit comments

Comments
 (0)