Skip to content

Commit 1b63fb5

Browse files
authored
Fix URL style (#9)
1 parent 31cfa31 commit 1b63fb5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

generate-status/write_status.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@
2828
ocp_subsystem["updated"] = str(datetime.datetime.utcnow().replace(tzinfo=datetime.timezone.utc, microsecond=0).isoformat())
2929
ocp_subsystem["access_urls"] = [
3030
{
31-
"Web Console": f"https://console-openshift-console.apps.{engagement['ocp_sub_domain']}.{context['ocp_base_url']}"
31+
"title": "Web Console",
32+
"url": f"https://console-openshift-console.apps.{engagement['ocp_sub_domain']}.{context['ocp_base_url']}"
3233
},
3334
{
34-
"API": f"https://api.{engagement['ocp_sub_domain']}.{context['ocp_base_url']}:6443"
35+
"title": "API",
36+
"url": f"https://api.{engagement['ocp_sub_domain']}.{context['ocp_base_url']}:6443"
3537
}
3638
]
3739

0 commit comments

Comments
 (0)