I have a requirement in Jenkins wherein,
- We have, for example, 10 jobs in view ABC with specific configuration.
- Now, I need to create a new view in Jenkins XYZ and clone all the jobs in ABC with different name and change the configuration, for example SCM URL.
I came across a groovy script which might do this, but I am not much aware of groovy
https://wiki.jenkins-ci.org/display/JENKINS/Clone+all+projects+in+a+View
We create a new branches (new URL's) for every release. So the jobs under the view ABC needs to be copied into XYZ with different names and URL's updated. I do not want to waste time creating each job individually with different name and then add them to the view XYZ
Any help would be highly appreciated.