We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3476318 commit 6d8b9d1Copy full SHA for 6d8b9d1
1 file changed
tools/devops/automation/templates/build/configure.yml
@@ -21,6 +21,10 @@ steps:
21
# the following list will be used to track the tags and set them in VSTS to make the monitoring person life easier
22
[System.Collections.Generic.List[string]]$tags = @()
23
24
+ if ($buildReason -eq "Schedule") {
25
+ $tags.Add("cronjob")
26
+ }
27
+
28
if ($buildReason -eq "PullRequest" -or (($buildReason -eq "Manual") -and ($buildSourceBranchName -eq "merge")) ) {
29
Write-Host "Configuring build from PR."
30
# This is an interesting step, we do know we are dealing with a PR, but we need the PR id to
0 commit comments