File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 5252 run : |
5353 # Evaluate whether or not cloud tests should run
5454 RUN_CLOUD_TESTS='false'
55+ # push events run all tests when code was changed
56+ if [ "${EVENT}" == "push" ] && [ "${CODE_CHANGED}" == "true" ];then
57+ RUN_CLOUD_TESTS='true'
5558 # cloud-tests label forces cloud tests to run, BUT only on AKO PRs, not from forked repos
56- if [ "${CLOUD_TESTS_LABEL}" == "true" ] && [ "${FORKED}" == "false" ];then
59+ elif [ "${CLOUD_TESTS_LABEL}" == "true" ] && [ "${FORKED}" == "false" ];then
5760 RUN_CLOUD_TESTS='true'
5861 # safe-to-test label forces clous tests to run, BUT only when the PR was just "labeled" safe to test
5962 elif [ "${SAFE_TO_TEST_LABEL}" == "true" ] && [ "${ACTION}" == "labeled" ];then
You can’t perform that action at this time.
0 commit comments