Skip to content

Commit e443015

Browse files
committed
post_comment_for_job_results.py: add backticks around numbers so that they are not hyperlinked as phone numbers
1 parent 8ff4c86 commit e443015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

firebase-dataconnect/ci/post_comment_for_job_results.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ def generate_message_lines(data: ParsedArgs) -> Iterable[str]:
7272

7373
yield ""
7474
yield (
75-
f"run_id={data.github_run_id} "
76-
f"run_number={data.github_run_number} "
77-
f"run_attempt={data.github_run_attempt}"
75+
f"run_id=`{data.github_run_id}` "
76+
f"run_number=`{data.github_run_number}` "
77+
f"run_attempt=`{data.github_run_attempt}`"
7878
)
7979

8080

0 commit comments

Comments
 (0)