1
0
Fork 0

jenkins-gerrit: make links clickable again

After gerrit was upgraded, the comment formatting changed. Links inside
blocks indented with two spaces cannot be clicked anymore, so change it
to a listing.

Change-Id: I4dc338c22e9afe4b9d9df845c6f5d9b3a91f93d9
This commit is contained in:
Oliver Smith 2023-02-20 11:27:37 +01:00
parent 6dcd1360ff
commit 51748a77a7
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ def get_job_short_name(job):
def get_jobs_list_str(jobs):
ret = ""
for job in jobs:
ret += f" [{get_job_short_name(job)}] {job['url']}/consoleFull\n"
ret += f"* [{get_job_short_name(job)}] {job['url']}/consoleFull\n"
return ret