我想为我所有的rust项目创建一个带有模板的中心存储库。在其他项目中,我只想向它们添加链接:
这是指向我的模板存储库的示例链接。您可以找到它们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存储库需要service connection进行授权。
答案 0 :(得分:1)
Github
服务连接(当您创建新的服务连接时)endpoint: service_connection_name
。