Skip to content

Commit c1bdcfe

Browse files
committed
feat: Comment commit for testing
1 parent 45fcbf1 commit c1bdcfe

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

scripts/download-oas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fi
3333
# Move oas to root level
3434
mkdir ${ROOT_DIR}/oas
3535
cd ${work_dir}
36-
git clone ${OAS_REPO}
36+
git clone ${OAS_REPO} --quiet
3737

3838
for service_dir in ${work_dir}/${OAS_REPO_NAME}/services/*; do
3939
max_version_dir=""

scripts/generate-sdk/languages/go.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ generate_go_sdk() {
7575

7676
# Install SDK project tools
7777
cd ${SDK_REPO_LOCAL_PATH}
78+
git pull
7879
make project-tools
7980

8081
# Backup of the current state of the SDK services dir (services/)

scripts/sdk-create-pr.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ rm -rf ${work_dir}/sdk_to_push/.git
6060

6161
# Initialize git repo
6262
cd ${work_dir}/git_repo
63-
git clone ${REPO_URL_SSH} ./
63+
git clone ${REPO_URL_SSH} ./ --quiet
6464
git config user.name "${COMMIT_NAME}"
6565
git config user.email "${COMMIT_EMAIL}"
6666

@@ -116,8 +116,9 @@ for service_path in ${work_dir}/sdk_to_push/services/*; do
116116
continue
117117
}
118118

119-
git commit -m "Generate $service: $COMMIT_INFO"
120-
git push origin "$branch"
119+
echo ">> Actually pushing changes to main for $service service..."
120+
# git commit -m "Generate $service: $COMMIT_INFO"
121+
# git push origin "$branch"
121122
fi
122123
fi
123124
done

0 commit comments

Comments
 (0)