We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed9fb0c commit 5f1cb5aCopy full SHA for 5f1cb5a
1 file changed
.github/workflows/deploy.yml
@@ -5,6 +5,10 @@ on:
5
branches:
6
- main
7
workflow_dispatch:
8
+ workflow_run:
9
+ workflows: ["Sync Audit Data"]
10
+ types:
11
+ - completed
12
13
permissions:
14
contents: write
@@ -15,6 +19,7 @@ concurrency:
15
19
16
20
jobs:
17
21
deploy:
22
+ if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
18
23
runs-on: ubuntu-latest
24
25
steps:
0 commit comments