Is it possible to Scan a Multibranch Pipeline to detect the branches with a Jenkinsfile, but without the pipeline execution?
Jenkinsfile
My projects have different branc
If you are using job-dsl you could simply do this and it will scan everything without actually running the build the first time you index.
organizationFolder('Some folder name') { buildStrategies { skipInitialBuildOnFirstBranchIndexing() } }