Skip to content

Commit 18dd197

Browse files
authored
Bugfix: workflow not waiting for called workflow to complete (#74)
1 parent 17c48fb commit 18dd197

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/nx-integration-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,13 @@ jobs:
1616
repository: ${{ github.repository }}
1717
pr_head: ${{ github.event.pull_request.head.sha }}
1818
pr_base: ${{ github.event.pull_request.base.ref }}
19+
20+
wait-for-result:
21+
name: Wait For Result
22+
needs: call-workflow
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: "Wait"
26+
shell: bash
27+
run: |
28+
echo "got result"

0 commit comments

Comments
 (0)