We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f59aa6 commit e66c622Copy full SHA for e66c622
main.py
@@ -118,6 +118,7 @@ def add_pr_comments() -> int:
118
119
# Fetch all existing comments on the PR
120
comments = pull_request.get_comments()
121
+ print(f"List all comments: \n ${comments}")
122
123
# Track if we found a matching comment
124
matching_comments = []
@@ -128,6 +129,7 @@ def add_pr_comments() -> int:
128
129
FAILURE_TITLE
130
):
131
matching_comments.append(comment)
132
+ print(f"List all matching_comments: \n ${matching_comments}")
133
if matching_comments:
134
last_comment = matching_comments[-1]
135
0 commit comments