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

@@ -1497,7 +1497,7 @@ class ApplicationDeploymentJob implements ShouldBeEncrypted, ShouldQueue
]
);
if ($this->saved_outputs->get('commit_message')) {
$commit_message = str($this->saved_outputs->get('commit_message'))->limit(47);
$commit_message = str($this->saved_outputs->get('commit_message'));
$this->application_deployment_queue->commit_message = $commit_message->value();
ApplicationDeploymentQueue::whereCommit($this->commit)->whereApplicationId($this->application->id)->update(
['commit_message' => $commit_message->value()]