Skip to content

Commit 415625f

Browse files
committed
Fix workflow syntax.
1 parent 31a74af commit 415625f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ jobs:
2727
workflow: dispatch.yml
2828
workflow_inputs: "{\"cake\":\"delicious\"}"
2929
workflow_timeout_seconds: 30
30-
- name: Output fetched Run ID
30+
- name: Evaluate that the Run ID output has been set
3131
run: |
3232
if ["${{ steps.return_dispatch.outputs.run_id }}" == ""]; then
3333
echo "Failed to return Run ID"
3434
exit 1
3535
fi
36+
- name: Output fetched Run ID
3637
run: echo ${{ steps.return_dispatch.outputs.run_id }}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Return Dispatch"
2-
description: "Return the run ID for a dispatched action."
2+
description: "Dispatch an action and return the new run ID."
33
author: "Alex Miller"
44
branding:
55
icon: "refresh-cw"

0 commit comments

Comments
 (0)