Jira Integration
Codefresh integrates with Jira in a variety of ways:
- Through the Jira Integration for the highest observability of your GitOps deployments
- Through a custom step from our step marketplace so that you can connect your pipelines with Jira
- Alternatively, through using your own jira-cli
Prerequisites needed:
Use Jira Within Your Codefresh Pipeline
The step marketplace offers several freestyle steps that can be used in your Codefresh pipeline through steps.
One of those steps is the Jira Issue Manager. It can be used to:
- Create a Jira issue
- Comment on existing Jira issues
- Change the status of an issue e.g. once the build is successful
- Add a description to your issue
- And more
More information is provided directly in the example.
Using your own jira-cli
Alternatively, you can use your own jira-cli by adding the following steps to your Dockerfile:
FROM python:2-alpine
RUN apk add -U gcc musl-dev linux-headers openssl-dev libffi-dev && pip install jira-cli
And then running the Dockerfile.
What to read next
- Example for sending notifications to Jira
- Have a look at other things that you can do with your Codefresh Pipeline in the example section
- Create a pipeline