如何在Github分支提交中使用其API触发Ansible Tower中的作业?
我可以使用Github webhook,但是当推送触发它时,无论分支如何都会发生。我想知道webhook有效负载是否可以提供信息,但我不确定如何在工作中使用它。我是在正确的轨道还是有更好的方法?
感谢。
答案 0 :(得分:0)
您可以使用GitHub actions and conditionals使用管道。 例如:
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
取自here。