Azure DevOps:如何消除 Azure DevOps 中的警告“为触发器设置的标签与管道不匹配”?

Ray*_*pew 6 tags warnings azure-devops azure-pipelines

我设置了两个 Azure DevOps 管道,以便管道一的完成触发管道二。它工作正常,但会生成不必要的错误消息。

所有最近的管道两个版本都在此页面上列出(不是真正的链接,不必费心点击它):https ://dev.azure.com/mycompany/myproject/_build?definitionId=29

此页面上列出了任何触发器问题(不是真正的链接,请勿点击它):https ://dev.azure.com/mycompany/myproject/_build?definitionId=29&view=triggerIssues

似乎管道一 -> 管道二的每次运行都会将此警告添加到“触发器问题”页面:“为触发器设置的标签与管道不匹配”。这只是一个警告,不是错误,管道二执行成功。但是我怎样才能消除这个警告信息呢?

管道资源在管道二中指定如下:

resources:
  pipelines:
  - pipeline: pipeline-one
    source: mycompany.pipeline-one
    # project: myproject # optional - only required if first pipeline is in a different project
    trigger:
      enabled: true
      branches:
        include:
        - master
        - develop
        - release_*
Run Code Online (Sandbox Code Playgroud)

未指定标签,因为未使用标签。

我已查看以下文档但没有找到答案。我可能错过了文档中的某些内容。