chore: remove limit on commit message

This commit is contained in:
peaklabs-dev
2025-01-16 14:42:33 +01:00
parent e2a9cb61aa
commit 8bcd1449d2
3 changed files with 30 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ class ApplicationDeploymentQueue extends Model
return null;
}
return str($this->commit_message)->trim()->limit(50)->value();
return str($this->commit_message)->value();
}
public function addLogEntry(string $message, string $type = 'stdout', bool $hidden = false)