8

master一旦拉取请求(PR)完成,我们如何自动添加自定义注释标签?

更多背景:

  • 使用azure-pipelines.yml
  • master强制使用 PR 的分支策略
  • 我们有一个存储库,其中包含 Azure Devops 管道模板(“devops 模板存储库”)
  • 其他存储库有一个引用“devops 模板”存储库的根管道文件
  • 我们使用 SEMVER 来标记我们的产品,包括 devops 模板 repo
  • 在根管道中,我们希望固定到 devops 模板 repo 的 SEMVER 版本
  • 我们目前使用以下各项手动标记以指向 PR 完成后发生的合并提交
    • “诉MAJOR…… MINORPATCH
    • “诉MAJORMINOR
    • “v MAJOR

仅限MAJOR示例:

resources:
  repositories:
    - repository: templates
      type: git
      name: template_devops_pipelines
      ref: "refs/tags/v1"
4

1 回答 1

1

我使用的示例标记管道:

trigger:
  - main

variables:
  user.email: "devops@myorganization.com" 
  user.name: "DevOps"
  defaultBranch: "main"
  major: 1
  minor: 0
  patch: $[counter(variables['patch'], 2)]

name: $(major).$(minor).$(patch)

steps:
  - checkout: self
    persistCredentials: true
  - script: |
      git config user.email ${{variables['user.email']}}
      git config user.name ${{variables['user.name']}}
    displayName: 'configure git credentials'
  - script: | 
      git tag "$(Build.BuildNumber)"
      git push origin "$(Build.BuildNumber)"
    displayName: 'git tag'
    condition: eq(variables['Build.SourceBranchName'], variables['defaultBranch'])

你基本上需要三样东西:

  1. 结帐persistCredentials- 这样您的管道就可以标记并稍后推送
  2. 配置 git user.email 和 user.password
  3. 标记和推送

对于最后一步,您需要为管道构建服务帐户分配“贡献”权限。转到:Project Settings -> Repositiories -> {your repo} -> Security,找到用户{your organization} Build Service并将 Contribute 设置为Allow

于 2021-04-03T06:37:54.413 回答