This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-test-infra.git
The following commit(s) were added to refs/heads/master by this push:
new 5783e22 Add debug logging
5783e22 is described below
commit 5783e2241d8ae759623662e2c12679b609abff08
Author: Lari Hotari <[email protected]>
AuthorDate: Wed Oct 29 15:18:45 2025 +0200
Add debug logging
---
pulsarbot/entrypoint.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pulsarbot/entrypoint.sh b/pulsarbot/entrypoint.sh
index 1fd4981..ffc3149 100755
--- a/pulsarbot/entrypoint.sh
+++ b/pulsarbot/entrypoint.sh
@@ -50,6 +50,9 @@ function github_client() {
# get head sha
PR_JSON="$(github_get "/pulls/${PR_NUM}")"
+
+echo "PR JSON: ${PR_JSON}"
+
HEAD_SHA=$(printf "%s" "${PR_JSON}" | jq -r .head.sha)
PR_BRANCH_URL_ENCODED=$(printf "%s" "${PR_JSON}" | jq -r '.head.ref | @uri')
PR_USER=$(printf "%s" "${PR_JSON}" | jq -r .head.user.login)