Skip to content

Commit

Permalink
fix: run from pr report (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
patak-dev authored Feb 27, 2024
1 parent d9a511b commit 9c666e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -276,7 +276,7 @@ jobs:
|-------|--------|----------------|
${rows.join("\n")}
Successful suites without change: ${successfulSuitesWithoutChanges.join(", ")}
${conclusionEmoji.success} ${successfulSuitesWithoutChanges.join(", ")}
`
} else {
body += `${conclusionEmoji.success} ${successfulSuitesWithoutChanges.join(", ")}
Expand Down

0 comments on commit 9c666e2

Please sign in to comment.