I am using Bitbucket "Post Webhooks" to trigger Jenkins Builds on every push. When Jenkins is busy and commits are pushed multiple times within a short timeframe, it may occur, however, that Jenkins combines multiple branch events into 1 build.
Jenkins receives all branch events reliable and even shows all branch events responsible for a build within the build info. E.g:
Build #10 (Jul 27, 2022, 1:40:00 PM). Changes:
- 1.0.1 (details / bitbucketweb)
- 1.0.2-SNAPSHOT (details / bitbucketweb)
Events:
- Branch event at 1:30:00 PM on Jul 27, 2022
- Branch event at 1:35:00 PM on Jul 27, 2022
How may I prevent Jenkins from combining multiple events into 1 build and make him execute separate builds for each branch event instead?