You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can currently only use the Jira Issue Parameter in non-pipeline jobs.
It would be nice to also be able to use them in pipeline jobs so we can migrate old freestyle jobs (or remaining parameters) to new, full pipeline jobs.
pipeline {
agent any
parameters {
jiraIssue description: 'The JIRA Issue related to this staging environment.', JQLSearchQuery: 'project = PRJ AND status in ("Implementing", "Open", "testing") ORDER BY id DESC', jiraAlternateSummaryFields: '', name: 'JIRA_ISSUE'
}
stages {
stage('Orchestrate environment for ticket') {
steps {
echo JIRA_ISSUE
}
}
}
}
Upstream changes
No response
The text was updated successfully, but these errors were encountered:
What feature do you want to see added?
We can currently only use the Jira Issue Parameter in non-pipeline jobs.
It would be nice to also be able to use them in pipeline jobs so we can migrate old freestyle jobs (or remaining parameters) to new, full pipeline jobs.
Upstream changes
No response
The text was updated successfully, but these errors were encountered: