- POST
trigger パイプラインを実行する際の実行条件を設定。
branches パイプラインのトリガーとなるブランチを設定。 対象のブランチにプッシュされた際にパイプラインが実行される。
paths 含めるまたは除外するファイルパスを指定する。 pathsを指定する場合、トリガーにするブランチを明示的に指定する必要があります。
includeとexclude includeはbranchesや、pathsのターゲットをワイルドカードで指定する。 excludeはbranchesや、pathsのターゲットから除外するブランチ名をワイルドカードで指定する。
# specific path build trigger: branches: include: - master - releases/* paths: include: - docs/* exclude: - docs/README.md variables パイプラインで使用する変数を指定する。 $()でラップすると、変数が展開される。
# Set variables once variables: configuration: debug platform: x64 steps: # Use them once - task: MSBuild@1 inputs: solution: solution1.sln configuration: $(configuration) # Use the variable platform: $(platform) # Use them again - task: MSBuild@1 inputs: solution: solution2.