需要在 PR 合并到 master 时触发 CI 构建作业(仅当更改在 ./rel/* 路径内时)但在创建 Pull Request (PR) 时不触发 CI 构建。所以我有如下的触发器配置。
trigger:
branches:
include:
- master
paths:
include:
- ./rel/*
pr: none # will disable PR builds (but not CI builds)
但添加时无法触发 CI 构建pr: none
。如果pr: none
被删除,则 PR 和合并到 master 都会触发 Job。我只需要在合并到 master 的情况下运行作业/CI 构建。