Jira Integration from GitLab pipeline #751
Unanswered
kayvonkhosrowpour
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The workflow is usually this....
You can do this by overriding the variable in the GL template named "CX_FLOW_BUG_TRACKER". The value should be "Jira" instead of "GitLab" To do the configuration, I recommend using config-as-code and override the variable named "PARAMS" to have --config=cx.config --jira.url=${{secrets.JIRA_URL}} --jira.username=${{secrets.JIRA_USER}} --jira.token=${{secrets.JIRA_TOKEN} Look at https://github.com/checkmarx-ltd/cx-flow/wiki/Tutorials#github-actions-with-jira-integration for tutorial help on the config-as-code. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Background
I have cx-flow integrated with my GitLab pipeline by following the GitLab integration docs.
I have the following already implemented:
Question
I would like to also automatically create/update Issues in Jira within GitLab pipeline integration❓. Is this possible from a GitLab job?
Beta Was this translation helpful? Give feedback.
All reactions