File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ set -euo pipefail
99# For example, given the commits:
1010#
1111# A---B---C---D---W---X---Y---Z # origin/main
12- # \---E---F # our feature branch
12+ # \---E---F # feature/ branch
1313#
1414# ... `git merge-base origin/$SKIP_CHECK_BRANCH HEAD` would return commit `D`
1515# `...HEAD` specifies from the common ancestor to the latest commit on the current branch (HEAD)..
@@ -29,7 +29,7 @@ for file_to_check in $files_to_check; do
2929 done
3030 if [ " $file_is_skipped " != " true" ]; then
3131 echo -e $file_to_check
32- SKIP_CI=false # Set the SKIP_CI variable to false by default
32+ SKIP_CI=false
3333 echo " Changes detected in non-documentation files - skip-ci: $SKIP_CI "
3434 export $SKIP_CI
3535 exit 0 # # if file is outside of the skipped_directory exit script
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ concurrency:
3030 cancel-in-progress : true
3131
3232jobs :
33- conditional-skip : # test-delete-me
33+ conditional-skip :
3434 runs-on : ubuntu-latest
3535 name : Get files changed and conditionally skip CI
3636 outputs :
You can’t perform that action at this time.
0 commit comments