Add branch merging support to our mirror pipeline (#4734)
This adds the ability to do a branch merge as part of our mirroring pipeline. The merge will allow configuration of which files to move from source to target so it can be scoped to part of the branch. Instead of a standard push it will create a PR with the merge so it can be manually reviewed. Co-authored-by: Wes Haggard <Wes.Haggard@microsoft.com>
This commit is contained in:
parent
fba91e34c9
commit
60e28cbd23
@ -13,9 +13,9 @@ parameters:
|
||||
PRTitle: not-specified
|
||||
PRBody: ''
|
||||
ScriptDirectory: eng/common/scripts
|
||||
GHReviewersVariable: ''
|
||||
GHTeamReviewersVariable: ''
|
||||
GHAssignessVariable: ''
|
||||
GHReviewers: ''
|
||||
GHTeamReviewers: ''
|
||||
GHAssignees: ''
|
||||
# Multiple labels seperated by comma, e.g. "bug, APIView"
|
||||
PRLabels: ''
|
||||
SkipCheckingForChanges: false
|
||||
@ -52,8 +52,8 @@ steps:
|
||||
-PRTitle "${{ parameters.PRTitle }}"
|
||||
-PRBody "${{ coalesce(parameters.PRBody, parameters.CommitMsg, parameters.PRTitle) }}"
|
||||
-PRLabels "${{ parameters.PRLabels }}"
|
||||
-UserReviewers "$(${{ parameters.GHReviewersVariable }})"
|
||||
-TeamReviewers "$(${{ parameters.GHTeamReviewersVariable }})"
|
||||
-Assignees "$(${{ parameters.GHAssignessVariable }})"
|
||||
-UserReviewers "${{ parameters.GHReviewers }}"
|
||||
-TeamReviewers "${{ parameters.GHTeamReviewers }}"
|
||||
-Assignees "${{ parameters.GHAssignees }}"
|
||||
-CloseAfterOpenForTesting $${{ coalesce(parameters.CloseAfterOpenForTesting, 'false') }}
|
||||
-OpenAsDraft $${{ parameters.OpenAsDraft }}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user