Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
998594d
fix: update_repo in release const.go
jinqi7 Aug 19, 2024
eb3b057
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 21, 2024
ed42660
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 21, 2024
a9d4291
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 22, 2024
1239c89
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 27, 2024
d6d8c59
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 29, 2024
69b5b43
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 29, 2024
eb108c4
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 30, 2024
d7e37d5
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 30, 2024
b9f3d2e
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Aug 30, 2024
b4aa070
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Sep 3, 2024
48589e9
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Sep 4, 2024
249df34
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Sep 4, 2024
9af681a
Merge branch 'main' of https://github.com/redhat-appstudio/e2e-tests
jinqi7 Sep 6, 2024
65373d0
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 9, 2024
b14d565
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 9, 2024
3f9844c
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 11, 2024
de036c7
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 18, 2024
682d560
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 25, 2024
8b8b780
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 26, 2024
d0b1874
Merge branch 'main' of https://github.com/konflux-ci/e2e-tests
jinqi7 Sep 27, 2024
6f26f1d
fix: checking if the terminated reason contains failed
jinqi7 Sep 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/utils/tekton/pipelineruns.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"encoding/json"
"fmt"
"strconv"
"strings"

"k8s.io/client-go/kubernetes"
"knative.dev/pkg/apis"
Expand Down Expand Up @@ -239,7 +240,7 @@ func GetFailedPipelineRunDetails(c crclient.Client, pipelineRun *pipeline.Pipeli
d.FailedTaskRunName = taskRun.Name
d.PodName = taskRun.Status.PodName
for _, s := range taskRun.Status.TaskRunStatusFields.Steps {
if s.Terminated.Reason == "Error" {
if s.Terminated.Reason == "Error" || strings.Contains(s.Terminated.Reason, "Failed"){
d.FailedContainerName = s.Container
return d, nil
}
Expand Down