Skip to content

Commit

Permalink
MTA v7: fix outputs key to be human readable (rhdhorchestrator#442)
Browse files Browse the repository at this point in the history
Signed-off-by: gabriel-farache <[email protected]>
  • Loading branch information
gabriel-farache authored Oct 7, 2024
1 parent 9252dbc commit 2d6121c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mta-v7.x/mta.sw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -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"
}
Expand Down

0 comments on commit 2d6121c

Please sign in to comment.