From 85e3e777fdb08401c2db92b8a5cfe480f7b19572 Mon Sep 17 00:00:00 2001 From: nachoalonsoportillo Date: Thu, 26 Jun 2025 09:09:03 +0200 Subject: [PATCH] [Flexible Server] Fix typo in help text for `--allow-push` argument in GitHub action parameters --- src/azure-cli/azure/cli/command_modules/rdbms/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/_params.py b/src/azure-cli/azure/cli/command_modules/rdbms/_params.py index 25c5c5b7271..bddbf16967b 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/_params.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/_params.py @@ -931,7 +931,7 @@ def _flexible_server_params(command_group): c.argument('action_name', options_list=['--action-name'], help='The name of the github action') c.argument('repository', options_list=['--repo'], help='The name of your github username and repository e.g., Azure/azure-cli ') c.argument('branch', options_list=['--branch'], help='The name of the branch you want upload github action file. The default will be your current branch.') - c.argument('allow_push', default=False, options_list=['--allow-push'], arg_type=get_three_state_flag(), help='Push the action yml file to the remote repository. The changes will be pushed to origin repository, speicified branch or current branch if not specified.') + c.argument('allow_push', default=False, options_list=['--allow-push'], arg_type=get_three_state_flag(), help='Push the action yml file to the remote repository. The changes will be pushed to origin repository, specified branch or current branch if not specified.') with self.argument_context('{} flexible-server deploy run'.format(command_group)) as c: c.argument('action_name', options_list=['--action-name'], help='The name of the github action')