Skip to content

Commit 43839f7

Browse files
committed
cleanup test push code
1 parent adb87b7 commit 43839f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/filter_changed_files_go_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
cancel-in-progress: true
3131

3232
jobs:
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:

0 commit comments

Comments
 (0)