Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
roblesterjr04 committed Jan 17, 2024
1 parent b8a213e commit 91033ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Checks/Checks/GitHubActionsCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ public function run(): Result
if ($run['name'] === $this->action) {

if ($run['status'] == 'in_progress') {
$result->shortSummary('Test program running...');
return $result->warning();
return $result->warning('Test program running...');
}

if ($run['conclusion'] == 'failure') return $result->failed();
Expand Down

0 comments on commit 91033ae

Please sign in to comment.