Skip to content

Commit 50d9f1e

Browse files
committed
Add debugging
1 parent d789afc commit 50d9f1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def process_git_request(fname, target_branch, source_branch, prj_dir):
2222
os.chdir(working_dir)
2323
# print(f"pwd : {os.getcwd()}")
2424
git_cmd = f"git log --oneline --no-abbrev-commit origin/{target_branch}..origin/{source_branch}"
25-
# print(git_cmd)
25+
print(git_cmd)
2626
try:
2727
out, err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE,
2828
stderr=subprocess.PIPE, text=True).communicate()

0 commit comments

Comments
 (0)