我想创建一个中心点存储库,其中包含我所有生锈项目的模板。在其他项目中,我只想添加链接到他们:
这是我的模板库的示例链接。你可以找到他们here。
trigger: ["master"]
pr: ["master"]
resources:
repositories:
- repository: templates
type: github
name: xoac/rust-azure-pipelines
# Test top level crate
- template: azure-test-stable.yml@templates
parameters:
name: test_tokio
displayName: Test tokio
cross: true
我收到一个错误here
我找到了需要指定服务连接的here。
如果您选择github作为您的类型,则name是GitHub仓库的全名,包括用户或组织。例如,Microsoft / vscode。此外,GitHub repos需要service connection进行授权。
Github
服务连接(当您创建新的服务连接时)endpoint: service_connection_name
添加到存储库定义中。