We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0d15a6 commit 2bf4068Copy full SHA for 2bf4068
1 file changed
.github/workflows/continuous-deployment.yml
@@ -1,12 +1,13 @@
1
name: Continuous Deployment Pipeline
2
3
on:
4
- push:
5
- branches:
6
- - master
+ workflow_run:
+ workflows: [Quality Checks]
+ types: [completed]
7
8
jobs:
9
deploy-internal-dev-backend:
10
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
11
uses: ./.github/workflows/deploy-backend.yml
12
with:
13
apigee_environment: internal-dev
0 commit comments