如何区分azure DevOps构建管道中的分支触发器和计划触发器

DOJ*_*OJI 3 azure azure-devops azure-pipelines-build-task azure-pipelines azure-pipelines-yaml

我想在分支触发器和计划触发器的构建管道中运行不同的作业。

branch trigger => run job 1

scheduled trigger => run job 2

有什么方法可以区分触发器吗?这样我就会根据这种不同的条件来运行我的工作。

我的思考过程

我正在考虑在计划触发期间设置变量,因此我可以在工作条件评估中使用该变量。但我无法设置变量。

# Sample azure-build-pipeline.yml file


variables:

# by default the variable is false
  isScheduledTrigger: false


trigger:
  - develop
  - master

schedules:
  - cron: "0 0 * * *"
    displayName: Daily midnight build
    branches:
      include:
        - develop
    always: true
# somewhere here i want to set the isScheduledTrigger variable to TRUE

jobs:
 - job: Branch trigger job
   condition: or(eq(variables['Build.SourceBranchName'], 'develop'),eq(variables['Build.SourceBranchName'], 'master'))
   steps:
# Multiple steps for branch trigger



- job: Scheduled trigger job
   condition: and(eq(variables['Build.SourceBranchName'], 'develop'),eq(variables['isScheduledTask'], True))
   steps:
# Multiple steps for scheduled trigger


Run Code Online (Sandbox Code Playgroud)

Saj*_*ran 6

您可以使用名为 Reason 的变量来区分触发器的类型

condition: and(succeeded(), and(not(eq(variables['Build.Reason'], 'PullRequest')), not(eq(variables['Build.Reason'], 'Schedule'))))
Run Code Online (Sandbox Code Playgroud)