I use Parameters all the time to set logical conditions and inject string data such as version number into my builds so I made a cheatsheet. — Let’s start with Booleans. Boolean Param Will give you a check box booleanParam(name: 'DEBUG_BUILD', defaultValue: true, description: 'Is debug build') [2] Choice Param Will give you a drop down menu choice(name: 'build', choices: ['Debug', 'Release'], description: "Release or Debug.")