Skip to content

Commit 201fe99

Browse files
committed
test against python branch
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent fae3b9b commit 201fe99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/sdk-create-pr.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ git config user.email "${COMMIT_EMAIL}"
6767

6868
cp -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
7371
for 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"

0 commit comments

Comments
 (0)