From e6be2fa803142403ed41f9c438372d1ab3a3877d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Vieilledent?= Date: Thu, 25 May 2023 17:14:21 +0200 Subject: [PATCH] Add `deploy` alias to `environment:push` command --- src/Command/Environment/EnvironmentPushCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Environment/EnvironmentPushCommand.php b/src/Command/Environment/EnvironmentPushCommand.php index 3a1717390..3d5726f5a 100644 --- a/src/Command/Environment/EnvironmentPushCommand.php +++ b/src/Command/Environment/EnvironmentPushCommand.php @@ -21,7 +21,7 @@ protected function configure() { $this ->setName('environment:push') - ->setAliases(['push']) + ->setAliases(['deploy', 'push']) ->setDescription('Push code to an environment') ->addArgument('source', InputArgument::OPTIONAL, 'The source ref: a branch name or commit hash', 'HEAD') ->addOption('target', null, InputOption::VALUE_REQUIRED, 'The target branch name')