Skip to content

Commit ce67e5f

Browse files
committed
test
1 parent 322bc28 commit ce67e5f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,12 @@ def sync_website_content(username, token, source_repo, source_folder, source_ref
7777
break
7878

7979
# Check if commits are signed
80-
for commit in pr.commits:
80+
for commit in pr.get_commits():
81+
print(commit)
8182
print(commit.sha, commit.commit.message)
8283
print(commit.commit.verification.verified)
8384

85+
# https://cli.github.com/manual/gh_pr_merge
8486
# run(['gh', 'pr', 'megre', branch_name, '--auto'])
8587
g.close()
8688

0 commit comments

Comments
 (0)