From b0a366eee295fecfc5eab056262b44c847b80cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 29 May 2023 13:56:01 +0200 Subject: [PATCH] Update copy --- src/Appwrite/Vcs/Comment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Vcs/Comment.php b/src/Appwrite/Vcs/Comment.php index 46f34029f7..b7e5311861 100644 --- a/src/Appwrite/Vcs/Comment.php +++ b/src/Appwrite/Vcs/Comment.php @@ -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"; }