Skip to content

Commit a474edf

Browse files
committed
Setting env var
1 parent 1293f24 commit a474edf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup-rerun-vars/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +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-
echo "::set-output name=tests_to_run::rerun_tests"
43+
echo "tests_to_run=rerun_tests" >> $GITHUB_ENV
4444
else
4545
echo "The run was triggered by: ${{ github.actor }}"
46-
echo "::set-output name=tests_to_run::all_tests"
46+
echo "tests_to_run=all_tests" >> $GITHUB_ENV
4747
fi
4848
else
4949
echo "This is the first run."
50-
echo "::set-output name=tests_to_run::all_tests"
50+
echo "tests_to_run=all_tests" >> $GITHUB_ENV
5151
fi

0 commit comments

Comments
 (0)