File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright (c) Microsoft Corporation.
2+ # Licensed under the MIT License.
3+
4+ # Triggers controlled on the ADO side.
5+ trigger : none
6+
7+ resources :
8+ repositories :
9+ - repository : templates
10+ type : git
11+ name : OneBranch.Pipelines/GovernedTemplates
12+ ref : refs/heads/main
13+
14+ extends :
15+ template : v2/OneBranch.NonOfficial.CrossPlat.yml@templates
16+ parameters :
17+ featureFlags :
18+ runOnHost : true
19+ globalSdl :
20+ credscan :
21+ suppressionsFile : .config/CredScanSuppressions.json
22+ stages :
23+ - stage : InfoPublishing
24+ jobs :
25+ - job : PublishMergeInfo
26+ pool :
27+ type : linux
28+
29+ variables :
30+ ob_outputDirectory : " $(Pipeline.Workspace)/not_used/OB_template_complains_if_this_is_not_set"
31+
32+ steps :
33+ - script : |
34+ set -e
35+
36+ echo "##vso[build.addbuildtag]Repository.Name-$(Build.Repository.Name)"
37+ echo "##vso[build.addbuildtag]SourceBranch-$(Build.SourceBranch)"
38+ echo "##vso[build.addbuildtag]SourceVersion-$(Build.SourceVersion)"
39+ displayName: "Set merge info tags"
You can’t perform that action at this time.
0 commit comments