跳到主要内容

Azure CLI with YAML

List of YAML parameters and examples for the \"Azure CLI\" action

YAML parameters for Azure CLI

名称类型描述
action
必填
StringThe ID of the action.
type
必填
StringThe type of the action. Should be set to AZURE_CLI.
application_name
必填
StringThe ID of the application.
commands
必填
String[]The commands that will be executed.
integration_hash
必填
StringThe ID of the integration.
shellStringThe name of the shell that will be used to execute commands. Can be one of SH (default) or BASH.
setup_commandsString[]The command that will be executed only on the first run.

YAML example for Azure CLI

actions:
- action: "Azure Cli"
type: "AZURE_CLI"
setup_commands:
- "apt-get update && apt-get -y install git"
commands:
- "az webapp list"
shell: "SH"
integration_hash: "5ed4fe6446e03e110be748d5"