I'm looking at triggering different Jenkins pipelines depending on what has occurred in Github. I want one set of pipelines to occur on a git commit and another set on a pull request and another set on a merge.
Currently I have a Jenkinsfile that runs these builds and tests on every commit. Is there a way to break these up into separate pipelines/builds that are ran on specific git behavior? I'm not finding too much in the way of documentation for this. Seems to be an all or nothing sort of thing.
You can add multiple webhooks which can point to the different pipeline. In each webhook you can define the actions which will trigger the pipeline.
Hope it may answer your question.