Merged PR 803221: Add enable cherry picking parameter to YAML release pipeline

Add enable cherry picking parameter to YAML release pipeline
This commit is contained in:
Serge Mera 2024-09-03 20:25:18 +00:00
Родитель a5f70c73d1
Коммит 8a963074d5
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -7,11 +7,19 @@ parameters:
- name: EnablePublishing
type: boolean
default: true
- name: EnableCherryPicking
type: boolean
default: false
variables:
# The internal YAMLs use this value to skip publishing tasks
- name: EnablePublishing
value: ${{ parameters.EnablePublishing }}
# The internal YAMLs use this value to enable arbitrary stages without worrying about
# specific stage conditions. Useful for cherry-picking stages when creating a new release and
# using 'Stages to run'
- name: EnableCherryPicking
value: ${{ parameters.EnableCherryPicking }}
resources:
repositories: