Skip to content

Commit

Permalink
Test insert when merging to master (#49168)
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkiGibson committed Nov 4, 2020
1 parent 16fe4ab commit 914af9c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions azure-pipelines-official.yml
Expand Up @@ -98,6 +98,18 @@ stages:
arguments: '-sourceBranchName $(SourceBranchName) -prNumber $(PRNumber)'
condition: and(succeeded(), ne(variables['PRNumber'], 'default'))

- task: tagBuildOrRelease@0
displayName: Tag master validation build
inputs:
type: 'Build'
tags: |
MasterValidationBuild
condition: and(succeeded(), eq(variables['SourceBranchName'], 'master'))

- powershell: git pull origin master-vs-deps
displayName: Merge master-vs-deps into source branch
condition: and(succeeded(), eq(variables['SourceBranchName'], 'master'))

- powershell: Write-Host "##vso[task.setvariable variable=VisualStudio.DropName]Products/$(System.TeamProject)/$(Build.Repository.Name)/$(SourceBranchName)/$(Build.BuildNumber)"
displayName: Setting VisualStudio.DropName variable

Expand Down

0 comments on commit 914af9c

Please sign in to comment.