File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,8 +67,6 @@ git config user.email "${COMMIT_EMAIL}"
6767
6868cp -a . ${work_dir} /sdk_backup
6969
70- echo -e " \n>> Before service loop"
71-
7270# Create PR for each new SDK module if there are changes
7371for service_path in ${work_dir} /sdk_to_push/services/* ; do
7472 service=" ${service_path##*/ } "
@@ -86,7 +84,9 @@ for service_path in ${work_dir}/sdk_to_push/services/*; do
8684 echo -e " \n>> Detected changes in $service service"
8785
8886 if [[ " $BRANCH_PREFIX " != " main" ]]; then
89- git switch main # This is needed to create a new branch for the service without including the previously committed files
87+ # git switch main # This is needed to create a new branch for the service without including the previously committed files
88+ # revert back - just for testing right now
89+ git switch fix/linter-and-test-should-run-per-service
9090 branch=" $BRANCH_PREFIX /$service "
9191 git switch -c " $branch "
9292 echo -e " inside switch"
You can’t perform that action at this time.
0 commit comments