Skip to content

Commit cb3a720

Browse files
committed
More debugging for testing
1 parent 102961e commit cb3a720

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/process-git-request.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ def process_git_request(fname, target_branch, source_branch, prj_dir):
3939
commit_sha = ""
4040
# we just want the commit sha IDs
4141
for x in output_lines:
42-
# print(f"This is output_lines {x}")
42+
print(f"This is output_lines {x}")
4343
if not bool(re.search(r'[^\x30-\x39a-fA-F]', x)): # equivalent to Ruby's !x[/\H/]
4444
continue
4545
else:
4646
y = x.split()
47-
# print(f"This is y {y}")
47+
print(f"This is y {y}")
4848
commit_sha = str(y[0])
49-
# print("Found a commit in line ", commit_sha)
49+
print("Found a commit in line ", commit_sha)
5050

5151
git_cmd = "git show " + commit_sha
5252
gitlog_out, gitlog_err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True).communicate()

0 commit comments

Comments
 (0)