File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -118,19 +118,19 @@ def add_pr_comments() -> int:
118
118
119
119
# Fetch all existing comments on the PR
120
120
comments = pull_request .get_comments ()
121
- print (f"List all comments: \n $ { comments } " )
121
+ print (f"List all comments:\n { comments } " )
122
122
123
123
# Track if we found a matching comment
124
124
matching_comments = []
125
125
last_comment = None
126
126
127
127
for comment in comments :
128
- print (f"List comment: \n $ { comment .body } " )
128
+ print (f"List comment:\n { comment .body } " )
129
129
if comment .body .startswith (SUCCESS_TITLE ) or comment .body .startswith (
130
130
FAILURE_TITLE
131
131
):
132
132
matching_comments .append (comment )
133
- print (f"List all matching_comments: \n $ { matching_comments } " )
133
+ print (f"List all matching_comments:\n { matching_comments } " )
134
134
if matching_comments :
135
135
last_comment = matching_comments [- 1 ]
136
136
You can’t perform that action at this time.
0 commit comments