1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

Update copy

This commit is contained in:
Matej Bačo 2023-05-29 13:56:01 +02:00
parent 5d2d14df6e
commit b0a366eee2

View file

@ -60,7 +60,7 @@ class Comment
foreach ($projects as $projectId => $project) {
$text .= "### {$project['name']} `{$projectId}`\n\n";
$text .= "| Function | Status | Execute |\n";
$text .= "| Function | Status | Actions |\n";
$text .= "| :- | :- | :- |\n";
foreach ($project['functions'] as $functionId => $function) {
@ -72,7 +72,7 @@ class Comment
'failed' => '❌ Failed',
};
$execute = $function['status'] === 'ready' ? "[HTTP](#) \\| [Console](#)" : '_Build must be ready first_';
$execute = $function['status'] === 'ready' ? "[Execute](#) \\| [Activate](#)" : '_Build must be ready first_';
$text .= "| **{$function['name']}** `{$functionId}` | {$status} ([Logs](#)) | {$execute} |\n";
}