Jira Integration
The Jira Issue Manager can either be accessed by adding the plugin to your codefresh.yml file or by adding your own jira-cli to your Dockerfile.
Prerequisites needed:
Plugin Marketplace
The plugin marketplace offers several freestyle steps that can be used in your Codefresh pipeline through plugins.
One of those plugins 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 on how to use the Jira Issue Manager in your Codefresh pipeline are 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