Merge pull request #3821 from loudar/next

Limit randomly generated GitHub app name length
This commit is contained in:
🏔️ Peak 2024-10-14 15:10:20 +02:00 committed by GitHub
commit cb91b47282
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ class Create extends Component
public function mount()
{
$this->name = generate_random_name();
$this->name = substr(generate_random_name(), 0, 34); // GitHub Apps names can only be 34 characters long
}
public function createGitHubApp()