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 be5f54d commit 1293f24Copy full SHA for 1293f24
setup-rerun-vars/action.yml
@@ -40,10 +40,12 @@ runs:
40
echo "Triggering Actor: $triggering_actor"
41
if [[ "$triggering_actor" == "gha-bstack-rerun[bot]" ]]; then
42
echo "The run was triggered by the GitHub App."
43
- tests_to_run="rerun_tests"
+ echo "::set-output name=tests_to_run::rerun_tests"
44
else
45
echo "The run was triggered by: ${{ github.actor }}"
46
+ echo "::set-output name=tests_to_run::all_tests"
47
fi
48
49
echo "This is the first run."
50
51
0 commit comments