gpt4 book ai didi

azure - 如何使用azure devops api或其他方法从拉取请求中获取目标分支?

转载 作者:行者123 更新时间:2023-12-03 21:12:31 24 4
gpt4 key购买 nike

我正在尝试为 3 个环境(dev、qa、prod)创建一个构建管道,但能够选择从哪个构建管道。

这个想法是将管道保留在产品分支或另一个存储库上,而不是在每个环境中都有它。现在的问题是,在 PR 上,它将仅在 master(prod) 分支上启动管道,因为它应包含 yml 文件。

有没有办法获取 PR 目标分支,以便为 PR 触发器添加附加条件?

最佳答案

how to get target branch from a pull request using azure devops api or other methods?

同意 Yan Sklyarenko 的观点。 Azure DevOps 为我们提供了一些predefined variables ,例如:

System.PullRequest.IsFork
System.PullRequest.PullRequestId
System.PullRequest.PullRequestNumber
System.PullRequest.SourceBranch
System.PullRequest.SourceRepositoryURI
System.PullRequest.TargetBranch

要从拉取请求中获取目标分支,我们可以使用预定义变量System.PullRequest.TargetBranch

因此,我们可以使用这个预定义变量作为条件:

condition: and(succeeded(), eq(variables['System.PullRequest.TargetBranch'], 'refs/heads/master'))

关于azure - 如何使用azure devops api或其他方法从拉取请求中获取目标分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62873619/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com