Skip to content

Commit 1293f24

Browse files
committed
setting output vars
1 parent be5f54d commit 1293f24

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup-rerun-vars/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ runs:
4040
echo "Triggering Actor: $triggering_actor"
4141
if [[ "$triggering_actor" == "gha-bstack-rerun[bot]" ]]; then
4242
echo "The run was triggered by the GitHub App."
43-
tests_to_run="rerun_tests"
43+
echo "::set-output name=tests_to_run::rerun_tests"
4444
else
4545
echo "The run was triggered by: ${{ github.actor }}"
46+
echo "::set-output name=tests_to_run::all_tests"
4647
fi
4748
else
4849
echo "This is the first run."
50+
echo "::set-output name=tests_to_run::all_tests"
4951
fi

0 commit comments

Comments
 (0)