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 d4bb265 commit be5f54dCopy full SHA for be5f54d
setup-rerun-vars/action.yml
@@ -15,6 +15,10 @@ inputs:
15
description: 'GitHub Token'
16
required: true
17
18
+outputs:
19
+ tests_to_run:
20
+ description: 'Modified tests to run based on rerun logic'
21
+
22
runs:
23
using: 'composite'
24
steps:
@@ -36,6 +40,7 @@ runs:
36
40
echo "Triggering Actor: $triggering_actor"
37
41
if [[ "$triggering_actor" == "gha-bstack-rerun[bot]" ]]; then
38
42
echo "The run was triggered by the GitHub App."
43
+ tests_to_run="rerun_tests"
39
44
else
45
echo "The run was triggered by: ${{ github.actor }}"
46
fi
0 commit comments