We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d789afc commit 50d9f1eCopy full SHA for 50d9f1e
.github/workflows/process-git-request.py
@@ -22,7 +22,7 @@ def process_git_request(fname, target_branch, source_branch, prj_dir):
22
os.chdir(working_dir)
23
# print(f"pwd : {os.getcwd()}")
24
git_cmd = f"git log --oneline --no-abbrev-commit origin/{target_branch}..origin/{source_branch}"
25
- # print(git_cmd)
+ print(git_cmd)
26
try:
27
out, err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE,
28
stderr=subprocess.PIPE, text=True).communicate()
0 commit comments