如何在 Azure Devops 中将文档链接添加到管道 运行

How to add links to documentation to pipeline run in Azure Devops

我们在 Azure DevOps 中有数百个不同的管道,我们有关于变量和描述管道功能的文档。

也许有一种方法可以将 link 添加到管道 运行 的文档中?例如这里

从屏幕截图来看,管道确实运行。

如果您使用的是 YAML 管道,只需将注释添加到管道定义中:

# Follow below link for more details:
# https://www.xxx.xxx

trigger:
- dev

pool:
  vmImage: ubuntu-latest

steps:
- script: echo Hello, world!
  displayName: 'Run a one-line script'

然后,您可以按'Ctrl'和right-click进入详情页面。

如果你使用的是Classic pipeline,可以添加到这个地方:

您不能在您展示的地方添加自定义展示项目。如果你想在那里看到它,你可以这样做:

如果您使用的是 YAML:

对于 YAML 管道,请务必按照我上面提供的步骤进行操作,否则变量不会显示在那里。

经典流水线类似

如果您有更多疑虑,请告诉我。