Re: Jenkins - Mutlibranch pipeline

2022-04-15 Thread Jeremy Mordkoff
If you use the GUI, the scan interval for new branches is under Scan Multibranch Pipeline Triggers and the orphan item setting is right after it. On Thursday, April 14, 2022 at 5:02:50 PM UTC-4 nhoj.p...@gmail.com wrote: > So I've changed mine to 7 days, which I've done using the groovy script

Re: Jenkins - Mutlibranch pipeline

2022-04-14 Thread John Patrick
So I've changed mine to 7 days, which I've done using the groovy script that created/configures the pipeline. e.g. multibranchPipelineJob(...) { .. orphanedItemStrategy { discardOldItems { daysToKeep(7) // how long before dead branch build is deleted } } .. } I think the defa

Jenkins - Mutlibranch pipeline

2022-04-14 Thread Madhu Muchukota
Hi Team - We are using a Multibranch pipeline with GIT branch source. When ever we delete a branch in the Project repository, we see that this branch is being showed as strike-through. How long it will be shown as strike-through and when it will get deleted completely from Jenkins UI? Also when