Microsoft Azure with YAML
Tip
YAML parameters for Microsoft Azure
Name | Type | Description |
---|---|---|
action Required | String | The ID of the action. |
type Required | String | The type of the action. Should be set to AZURE . |
push_url Required | String | The URL to the repository. |
git_auth_mode Required | String | The authentication mode for Git Push. Should always be set to HTTP . |
login | String | The username required to connect to the server. |
password | String | The password required to connect to the server. |
use_custom_gitignore | Boolean | When set to false the push will ignore paths listed in .gitignore file. |
isolated | Boolean | When set to true , action will push only repository files (without artifacts). |
target_branch | String | Defines the remote branch to which the push will be performed. If empty, files will be pushed to the same branch. |
deployment_excludes | String[] | The paths and/or files that will be left out during the push. Only works when use_custom_gitignore is set to true . |
without_force | Boolean | Defines whether the --force flag should be used when invoking the git push command or not. |
YAML example for Microsoft Azure
yamlactions: - action: "Push to Your Repo" type: "AZURE" login: "api_tests_user" password: "api_tests_password" git_auth_mode: "HTTP" push_url: "https://buddytestapp.scm.azurewebsites.net:443/BuddyTestApp.git" target_branch: "stage" use_custom_gitignore: false isolated: true
Last modified on Sep 23, 2024