Jira Query Language (JQL) is a powerful and flexible way to search within Jira. With CI/CD for Jira you can now query on build and deployment information.
From the Jira search bar, select JQL on the far right to begin writing your query.
When you begin typing, Jira will offer some guidance on syntax:
Deployments
Function | Description |
---|---|
deploymentEnvironmentName |
Name of your deployment environment |
deploymentEnvironmentType |
Type of environment |
deploymentState |
Current status of the deployment |
deploymentName |
Name of the specific deployment |
Example syntax:
deploymentEnvironmentType
~ Production
Shows all issues where the latest deployment is in the production environment
Builds
Function | Description |
---|---|
buildState |
Status of a build |
buildName |
Name of a build |
Example syntax:
buildState
~ successful
Show all issues where the latest build was successful