This commit is contained in:
Andras Bacsai
2023-05-30 15:00:11 +00:00
parent 726d46c3c1
commit ca777384eb
3 changed files with 11 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ function get_container_status(Server $server, string $container_id, bool $throwE
function generate_container_name(string $uuid, int|null $pull_request_id = null)
{
if ($pull_request_id) {
return $uuid . '_pr_' . $pull_request_id;
return $uuid . '-pr-' . $pull_request_id;
} else {
return $uuid;
}