From 2d6121c7e68c44421af1f92656a7e2ef70f77846 Mon Sep 17 00:00:00 2001 From: gabriel-farache Date: Mon, 7 Oct 2024 13:57:54 +0200 Subject: [PATCH] MTA v7: fix outputs key to be human readable (#442) Signed-off-by: gabriel-farache --- mta-v7.x/mta.sw.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mta-v7.x/mta.sw.yaml b/mta-v7.x/mta.sw.yaml index 23432bf9..6286bcb7 100644 --- a/mta-v7.x/mta.sw.yaml +++ b/mta-v7.x/mta.sw.yaml @@ -106,12 +106,12 @@ functions: "message": "MTA v7.x analysis completed for " + .repositoryURL, "outputs":[ { - "key":"mtaAnalysisResultURL", + "key":"MTA Analysis Result URL", "value": $SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report", "format":"link" }, { - "key":"migrationWaveJiraTicketURL", + "key":"Migration Wave Ticket URL", "value": (if .migrationWaveJiraTicket != null then .migrationWaveJiraTicket.link else "" end), "format":"link" } @@ -130,12 +130,12 @@ functions: "message": "MTA analysis for " + .application.repository.url + " completed with " + (.application.mandatoriesIncidents|tostring) + " incidents in mandatory issues. Check the analysis report." + (if .migrationWaveJiraTicket != null then " Application was exported to issue manager." else "" end), "outputs": [ { - "key": "mtaAnalysisResultURL", + "key":"MTA Analysis Result URL", "value": ($SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report"), "format": "link" }, { - "key": "migrationWaveJiraTicketURL", + "key":"Migration Wave Ticket URL", "value": (if .migrationWaveJiraTicket != null then .migrationWaveJiraTicket.link else "" end), "format": "link" }