gpt4 book ai didi

azure-devops - Azure Devops 扩展操作

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

我正在为 Azure DevOps 开发服务 Hook 扩展,它大致基于 https://learn.microsoft.com/en-us/azure/devops/extend/develop/add-service-hook?view=azure-devops 上提供的示例

我找不到有关可用操作的任何文档。例如,该示例为示例消费者提供了 publishEvent 操作,但没有这方面的引用资料。

有人可以向我指出可能存在的任何引用文档吗?

最佳答案

目前仅支持使用自定义服务 Hook 发送标准事件负载。在示例中,您可以看到定义如下的操作:

        "actions": [
{
"id": "performAction",
"name": "Perform action",
"description": "Posts a standard event payload",
"supportedEventTypes": [
"git.push",
"git.pullrequest.created",
"git.pullrequest.updated"
],
"publishEvent": {
"url": "{{{url}}}",
"resourceDetailsToSend": "all",
"messagesToSend": "all",
"detailedMessagesToSend": "all"
}
}
]

使用此设置,它会将有关触发事件的所有有效负载发送到您配置的 URL。您可以配置要发送的信息量:

resourceDetailsToSend - all, minimal, none
messagesToSend - all, text, html, markdown, none
detailedMessagesToSend - all, text, html, markdown, none

关于azure-devops - Azure Devops 扩展操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59192690/

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