Is there a way to pre-populate Jenkins build page for parameterized builds? Is there a way to pre-populate Jenkins build page for parameterized builds? jenkins jenkins

Is there a way to pre-populate Jenkins build page for parameterized builds?


The correct url is buildWithParameters:

http://server/job/myjob/buildWithParameters?PARAMETER=Value

See https://wiki.jenkins.io/display/JENKINS/Parameterized+Build


Just came across this plugin: https://plugins.jenkins.io/build-with-parametersWith this, you just need to go to a URL like this: https://jenkins.mycompany.com/job/nikhil-test/parambuild/?ENV=env2&APP=myapp

This will open up the /buildWithParameters page for that job, with the values from your URL pre-populated on the page! If you don't provide a parameter OR provide an invalid value for the parameter, it will pre-populate that parameter with the default value.

build page