I have a Jenkins build system to run a project. Build starts through the functionality of the remote Jenkins API. When a commit is made to the project, we send an HTTP request assembly trigger for the Jenkins process, which runs on our local server; with a parameter that indicates the revision of the trunk project folder in the SVN repository that we want to check and build.
We also send the SVN username and commit message for revision as an optional http parameter. So the url is as follows:
http://server:8080/job/ProjectName/buildWithParameters?description=[commit message]&REVISION=[revision number]
I would like to display this description parameter somewhere on the assembly page, but I did not find an obvious way to do this by running the assembly from a remote API.
Do I need to specify the parameter something specific or the plugin needed for this function?
source share