We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42ae671 commit f9854daCopy full SHA for f9854da
.github/workflows/test.yml
@@ -28,4 +28,9 @@ jobs:
28
workflow_inputs: "{\"cake\":\"delicious\"}"
29
workflow_timeout_seconds: 30
30
- name: Output fetched Run ID
31
- run: echo ${{ steps.return_dispatch.outputs.run_id}}
+ run: |
32
+ if ["${{ steps.return_dispatch.outputs.run_id }}" == ""]; then
33
+ echo "Failed to return Run ID"
34
+ exit 1
35
+ fi
36
+ run: echo ${{ steps.return_dispatch.outputs.run_id }}
0 commit comments