Skip to content

Commit 8ff4c86

Browse files
committed
post_comment_for_job_results.py: avoid unnecessarily repeating the pr number
1 parent 41c1500 commit 8ff4c86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-dataconnect/ci/post_comment_for_job_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def generate_message_lines(data: ParsedArgs) -> Iterable[str]:
5959
logging.warning("WARNING: unable to parse PR number as an int: %s", data.triggering_pr)
6060
pr = None
6161

62-
yield f"Posting from Pull Request {pr}: {data.github_repository_html_url}/pull/{pr}"
62+
yield f"Posting from Pull Request {data.github_repository_html_url}/pull/{pr}"
6363

6464
yield f"Result of workflow '{data.github_workflow}' at {data.github_sha}:"
6565

0 commit comments

Comments
 (0)