From 783900c9289b82c5416664593c7885410f368977 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 6 May 2025 15:49:18 +0200 Subject: invocation server: actions are also meaningful for exit code 0 With the introduction of new exit codes, the presentation of an invocation was changed to refrain from showing actions in abnormal case failure already during analysis phase. However ca8fd841736ca65fa4292887052c78243512962a did not include the case of a successful build into the cases of normal circumstances. Fix this. --- doc/invocations-http-server/templates/invocation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index bdcbb623..c204efa3 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -123,7 +123,7 @@ Inocations {{invocation | e}} {% endfor %} {% else %} -{% if exit_code == 1 or exit_code == 2 %} +{% if exit_code == 0 or exit_code == 1 or exit_code == 2 %}

Failed actions

{% if failed_actions %}