File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171171 fi
172172 ;;
173173 "push")
174- if ${{ github.ref_name == 'main' }} || ${{ github.ref_name == 'develop' }}; then
174+ if ${{ github.ref_name == 'main' }} || ${{ github.ref_name == 'develop' }} || ${{ github.ref_type == 'tag' }} ; then
175175 for test_type in "${TESTSET[@]}"; do
176176 EXECUTE_LABELED["$test_type"]="true"
177177 done
Original file line number Diff line number Diff line change @@ -79,9 +79,10 @@ setup-workflow
7979 - adding labels will result retriggering job
8080 - All tests are executed by default when :
8181 - PR target branch is 'main'
82- - PUSH event on branches 'main' and 'develop'
82+ - PUSH event on branches 'main', 'develop' and on tags (on release)
8383 - SCHEDULE event
8484
85+
8586meta stage
8687=======================
8788
You can’t perform that action at this time.
0 commit comments