We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee16bb commit b893dd5Copy full SHA for b893dd5
1 file changed
.github/workflows/deploy.yml
@@ -7,6 +7,10 @@ on:
7
paths:
8
- docs/**
9
- .github/workflows/deploy.yml
10
+ workflow_run:
11
+ workflows: ["Gather Project Docs"]
12
+ types:
13
+ - completed
14
workflow_dispatch:
15
16
permissions:
@@ -20,6 +24,7 @@ concurrency:
20
24
21
25
jobs:
22
26
build:
27
+ if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
23
28
defaults:
29
run:
30
working-directory: docs
0 commit comments