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 1293f24 commit a474edfCopy full SHA for a474edf
setup-rerun-vars/action.yml
@@ -40,12 +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
- echo "::set-output name=tests_to_run::rerun_tests"
+ echo "tests_to_run=rerun_tests" >> $GITHUB_ENV
44
else
45
echo "The run was triggered by: ${{ github.actor }}"
46
- echo "::set-output name=tests_to_run::all_tests"
+ echo "tests_to_run=all_tests" >> $GITHUB_ENV
47
fi
48
49
echo "This is the first run."
50
51
0 commit comments