如何不在特定提交消息上运行管道
我的管道会进行一些更改,并进行了另一个更改,这会触发另一个管道,我不希望自动更新以触发管道。
I had an idea that I will specify commit message and that ignore it, but for some reason I cannot get it working.你能帮我吗?
variables:
COMMIT_MESSAGE: "MyCommitMessage"
workflow:
rules:
- if: $CI_COMMIT_MESSAGE != $COMMIT_MESSAGE
...
I have pipeline that makes some changes and commits another change which triggers another pipeline and I dont want that automatic update to trigger pipeline.
I had an idea that I will specify commit message and that ignore it, but for some reason I cannot get it working.
Can you help me with that?
variables:
COMMIT_MESSAGE: "MyCommitMessage"
workflow:
rules:
- if: $CI_COMMIT_MESSAGE != $COMMIT_MESSAGE
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须添加
永不
关键字,并使用这样的正则态度:如果将被评估为
true
,并且管道将永远不会运行。You have to add the
never
keyword and use a regex like this :The
if
will be evaluate totrue
and the pipeline will never run.