-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSet-AzDoBranchPolicyMergeStrategy.ps1
More file actions
163 lines (140 loc) · 4.67 KB
/
Set-AzDoBranchPolicyMergeStrategy.ps1
File metadata and controls
163 lines (140 loc) · 4.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
function Set-AzDoBranchPolicyMergeStrategy {
<#
.SYNOPSIS
Creates a Merge strategy policy on a branch
.DESCRIPTION
Creates a Merge strategy policy on a branch
.EXAMPLE
$params = @{
CollectionUri = "https://dev.azure.com/contoso"
RepoName = "Repo 1"
ProjectName = "Project 1"
}
Set-AzDoBranchPolicyMergeStrategy @params
This example creates a 'Require a merge strategy' policy with splatting parameters
.EXAMPLE
'repo1', 'repo2' |
Set-AzDoBranchPolicyMergeStrategy -CollectionUri "https://dev.azure.com/contoso" -ProjectName "Project 1" -PAT "***"
This example creates a 'Require a merge strategy' policy on the main branch of repo1 and repo2
.OUTPUTS
[PSCustomObject]@{
CollectionUri = $CollectionUri
ProjectName = $ProjectName
RepoName = $RepoName
id = $res.id
allowSquash = $res.settings.allowSquash
allowNoFastForward = $res.settings.allowNoFastForward
allowRebase = $res.settings.allowRebase
allowRebaseMerge = $res.settings.allowRebaseMerge
}
.NOTES
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High')]
param (
# Collection Uri of the organization
[Parameter(Mandatory, ValueFromPipelineByPropertyName)]
[string]
$CollectionUri,
# Project where the branch policy merge strategy will be setup
[Parameter(Mandatory, ValueFromPipelineByPropertyName)]
[string]
$ProjectName,
# Name of the Repository containing the YAML-sourcecode
[Parameter(Mandatory, ValueFromPipelineByPropertyName, ValueFromPipeline)]
[string[]]
$RepoName,
# Branch to create the policy on
[Parameter()]
[string]
$Branch = "main",
# Allow squash merge
[Parameter()]
[bool]
$AllowSquash = $true,
# Allow no fast forward merge
[Parameter()]
[bool]
$AllowNoFastForward = $false,
# Allow rebase merge
[Parameter()]
[bool]
$AllowRebase = $false,
# Allow rebase merge message
[Parameter()]
[bool]
$AllowRebaseMerge = $false
)
begin {
Write-Verbose "Starting function: Set-AzDoBranchPolicyMergeStrategy"
}
process {
$params = @{
uri = "$CollectionUri/$ProjectName/_apis/policy/configurations"
version = "7.2-preview.1"
Method = 'POST'
}
$getAzDoBranchPolicyTypeSplat = @{
CollectionUri = $CollectionUri
ProjectName = $ProjectName
PolicyType = "Require a merge strategy"
}
$policyId = (Get-AzDoBranchPolicyType @getAzDoBranchPolicyTypeSplat).policyId
foreach ($name in $RepoName) {
$getAzDoRepoSplat = @{
CollectionUri = $CollectionUri
ProjectName = $ProjectName
RepoName = $name
}
$repoId = (Get-AzDoRepo @getAzDoRepoSplat).RepoId
$body = @{
isEnabled = $true
isBlocking = $false
type = @{
id = $policyId
}
settings = @{
allowSquash = $AllowSquash
allowNoFastForward = $AllowNoFastForward
allowRebase = $AllowRebase
allowRebaseMerge = $AllowRebaseMerge
scope = @(
@{
repositoryId = $repoId
refName = "refs/heads/$branch"
matchKind = "exact"
}
)
}
}
if ($PSCmdlet.ShouldProcess($ProjectName, "Create Merge strategy policy on: $($PSStyle.Bold)$name$($PSStyle.Reset)")) {
$getAzDoBranchPolicySplat = @{
CollectionUri = $CollectionUri
ProjectName = $ProjectName
ErrorAction = 'SilentlyContinue'
}
$existingPolicy = Get-AzDoBranchPolicy @getAzDoBranchPolicySplat |
Where-Object { ($_.type.id -eq $policyId) -and ($_.settings.scope.refName -eq "refs/heads/$branch") -and ($_.settings.scope.repositoryId -eq $repoId) }
if ($null -eq $existingPolicy) {
$result += ($body | Invoke-AzDoRestMethod @params)
} else {
Write-Warning "Policy on $name/$branch already exists. It is not possible to update policies"
}
} else {
Write-Verbose "Calling Invoke-AzDoRestMethod with $($params| ConvertTo-Json -Depth 10)"
}
}
}
end {
if ($result) {
$result | ForEach-Object {
[PSCustomObject]@{
CollectionUri = $CollectionUri
ProjectName = $ProjectName
RepoName = $RepoName
PolicyId = $_.id
Url = $_.url
}
}
}
}
}