File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
.azure-pipelines/generation-templates Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -156,9 +156,10 @@ jobs:
156156
157157 # Push changes to msgraph-metadata repo
158158 - pwsh : ' $(scriptsDirectory)/git-push-cleanmetadata.ps1'
159+ condition : not('${{ parameters.skipOpenAPIPRGeneration }}')
159160 displayName : Publish ${{ parameters.endpoint }} OpenAPI description to msgraph-metadata repo
160161 env :
161- CreateOpenAPIPR : True
162+ CreateOpenAPIPR : true
162163 EndpointVersion : ${{ parameters.endpoint }}
163164 PublishChanges : $(publishChanges)
164165 workingDirectory : ' $(Build.SourcesDirectory)/msgraph-metadata'
@@ -176,10 +177,11 @@ jobs:
176177 SecretsFilter : " microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey"
177178
178179 - pwsh : ' $(scriptsDirectory)/create-pull-request.ps1'
180+ condition : not('${{ parameters.skipOpenAPIPRGeneration }}')
179181 displayName : ' Create Pull Request for the generated OpenAPI files for msgraph-metadata'
180182 env :
181183 BaseBranch : master
182- GeneratePullRequest : not('${{ parameters.skipOpenAPIPRGeneration }}')
184+ GeneratePullRequest : true
183185 GhAppId : $(microsoft-graph-devx-bot-appid)
184186 GhAppKey : $(microsoft-graph-devx-bot-privatekey)
185187 OverrideSkipCI : false
You can’t perform that action at this time.
0 commit comments