diff --git a/Jenkinsfile b/Jenkinsfile index 362ea76..1fbccdf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,14 @@ // vim: set sw=4 ts=4 sts=4 et : properties([ - pipelineTriggers([cron('H H * * *')]) + pipelineTriggers([cron('H H * * *')]), + parameters([ + choice( + choices: ['testing', 'stable', 'next'], + description: 'Fedora CoreOS Stream', + name: 'stream', + ) + ]), ]) import groovy.json.JsonSlurper