We have an SCM-controlled project that polls a repo every few minutes. In general, the workflow is great, but sometimes I need to make new changes to the server repository without starting the build in Jenkins (for various reasons: long builds, small changes, simultaneous commits, etc.).
I already set a quiet period, and sometimes I just start and stop the build (which is inconvenient), so Jenkins pulls the changes and does not start the build later.
So, is there any plugin that allows either:
- Manually cancel a future assembly (before it is called by a SCM poll participant)
- Manually update the project SCM repository without starting the build.
source
share