Skip to content

Commit e66c622

Browse files
committed
Print outputs
1 parent 8f59aa6 commit e66c622

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ def add_pr_comments() -> int:
118118

119119
# Fetch all existing comments on the PR
120120
comments = pull_request.get_comments()
121+
print(f"List all comments: \n ${comments}")
121122

122123
# Track if we found a matching comment
123124
matching_comments = []
@@ -128,6 +129,7 @@ def add_pr_comments() -> int:
128129
FAILURE_TITLE
129130
):
130131
matching_comments.append(comment)
132+
print(f"List all matching_comments: \n ${matching_comments}")
131133
if matching_comments:
132134
last_comment = matching_comments[-1]
133135

0 commit comments

Comments
 (0)