create yml for internal sync

This commit is contained in:
MilenaHristova 2023-02-02 15:10:10 +01:00
parent 2f34945ee1
commit 1f25df5d5d

View file

@ -0,0 +1,33 @@
pr: none
trigger:
batch: true
branches:
include:
- internal/release/*
resources:
repositories:
- repository: vmr
type: git
name: dotnet-dotnet
ref: $(Build.SourceBranch)
parameters:
- name: vmrBranch
displayName: dotnet-dotnet branch to push to
type: string
default: ''
variables:
- ${{ if ne(parameters.vmrBranch, '') }}:
- name: VmrBranch
value: ${{ parameters.vmrBranch }}
- ${{ else }}:
- name: VmrBranch
value: ${{ replace(replace(variables['Build.SourceBranch'], 'refs/heads/', ''), 'refs/pull/', '') }}
jobs:
- template: /eng/pipelines/templates/jobs/vmr-synchronization.yml
parameters:
vmrBranch: ${{ variables.VmrBranch }}