From 9c666e228552e708ff705e38a79fc3b1f4bea845 Mon Sep 17 00:00:00 2001 From: patak <583075+patak-dev@users.noreply.github.com> Date: Tue, 27 Feb 2024 11:48:12 +0100 Subject: [PATCH] fix: run from pr report (#289) --- .github/workflows/ecosystem-ci-from-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index 829a3629..5042a5fd 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -256,7 +256,7 @@ jobs: const latest = scheduledResults.find(s => s.suite === current.suite) || {} // in case a new suite is added after latest scheduled if (current.conclusion === "success" && latest.conclusion === "success") { - successfulSuitesWithoutChanges.push(`[${current.conclusion}](${current.link})`) + successfulSuitesWithoutChanges.push(`[${current.suite}](${current.link})`) } else { const firstColumn = current.suite @@ -276,7 +276,7 @@ jobs: |-------|--------|----------------| ${rows.join("\n")} - Successful suites without change: ${successfulSuitesWithoutChanges.join(", ")} + ${conclusionEmoji.success} ${successfulSuitesWithoutChanges.join(", ")} ` } else { body += `${conclusionEmoji.success} ${successfulSuitesWithoutChanges.join(", ")}