I am using Jenkins Job Generator Plugin to generate the job.
Scenario: Testing is a main project. After successful completion and whenever a developer updates the repository it invokes Jenkins Job Generator Project and this job is responsible for creating the child job.
So in this case i need to update the child job name. To this end I am trying to use a Jenkins environment variable like this:
Generated Job Name: PROJECT_NAME - "${SVN_REVISION}"
But after the execution of Jenkins Job Generator it's creating child job but name of job is like: PROJECT_NAME - "${SVN_REVISION}"
The Child job name is expected to be: Testing-8890
Can anyone tell me how to use environment variable in job configuration page?
Thank You