From 4e59c963e2f44e3a7e5b48dd3c4c969655a50fcf Mon Sep 17 00:00:00 2001 From: Rob de Kort Date: Tue, 15 Oct 2024 23:04:05 +0200 Subject: [PATCH] Add Github create repo organization hint (#85) --- src/NewCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NewCommand.php b/src/NewCommand.php index 0648381..d17c0c8 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -877,6 +877,7 @@ protected function askToPushToGithub() $this->githubRepository = text( label: 'What should be your full repository name?', default: $this->name, + hint: "Use `yourorg/$this->name` to create a repo in your organization.", required: true, ); }