Questions tagged [jira]

Questions tagged with [jira] should be related to interacting with Jira programmatically.

Jira is a proprietary issue tracking product, developed by Atlassian. It's often used to track issues for software development and other teams, and has many apps to support this.

There are two ways to interact with JIRA programmatically:

  1. APIs are typically used when building a Plugins2 plugin for Jira Data Center, which is a single containing code, an app descriptor () and usually some template files to render .
  2. REST APIs are typically used when building Connect add-ons (web applications for Jira Cloud) or configuring webhooks.
5925 questions
11
votes
1 answer

JIRA, add a Workflow to a Workflow Scheme?

In JIRA, what is the appropriate procedure to add a Workflow to a Workflow Scheme? In my case I created a new Issue Type which is referenced by a newly created Workflow. In order to add the Workflow to a Workflow Scheme, the Workflow Scheme must be…
Steve Kuo
  • 61,876
  • 75
  • 195
  • 257
11
votes
4 answers

How can I invoke a RESTful service through Apache Camel?

I am currently using a HTTP method for invoking some URL which will create a JIRA issue. Now I want to use Apache Camel, how can I use that? I need to invoke the following link through Camel: http://localhost:8080/rest/api/2/project/" + key +…
jasmeet24
  • 676
  • 3
  • 10
  • 24
10
votes
3 answers

JIRA - Jira post function -- How to update "fix version" field?

My scenario is: One step in my jira workflow should have the ability to unschedule a task i.e. set a Fix Version to "None". I noticed that I was not able to update fix version in a workflow post function - I don't know exactly why, but anyway I did…
gege
  • 371
  • 1
  • 5
  • 13
10
votes
7 answers

JIRA Workflows and Schemes

I am new to JIRA. Can somebody explain to me the meaning of the different schemes in JIRA; like issue security scheme, notification scheme and so on? Helpful online resources are also highly appreciated.
RMann
  • 101
  • 1
  • 1
  • 4
10
votes
3 answers

How to configure Tomcat to log everything via syslog?

I'm trying to configure Tomcat and a webapp (Atlassian JIRA) to log everything over syslog. Here is what I added to the webapp log4j.properties (atlassian-jira/WEB-INF/classes/log4j.properties) : log4j.rootLogger=WARN,…
Philippe
  • 1,206
  • 3
  • 13
  • 19
10
votes
3 answers

filter to retrieve all the JIRA issues where I was mentioned in the last 7 days in a comment

I'm trying to setup a JIRA filter to find all the mentions of me(currentUser()) in the last 7 days. I'm close with the search below, but it still gives me all issues that mentioned me AND were updated in the last 7 days. Which is a lot more. :) I…
Christina
  • 1,389
  • 1
  • 11
  • 12
10
votes
2 answers

Auto hyperlink Jira Issues in Git commits in SourceTree

Jira will automatically scan a git repo and pull in commits that are tagged with a Jira ID (ie QA-244). Is there a way to display the links to Jira issues from with SourceTree:
Philip Pittle
  • 11,821
  • 8
  • 59
  • 123
10
votes
4 answers

How to integrate Jira with GitLab CE?

We have self hosted GitLab CE and Jira, we want link git commit with jira issue link git commit with jira issue status, like we can start/move/close issue by git issues limit above operations on specific branches, e.g., change issue status only…
fifth
  • 4,249
  • 9
  • 45
  • 62
10
votes
1 answer

How to get JIRA Agile issues assigned to the current sprint for the current user using the JIRA REST API?

I'm getting started working with the JIRA REST API. I've learned how to get all the issues assigned to the current user: rest/api/2/search?jql=assignee=currentuser() ...now I am trying to filter those by the current sprint. I think this…
Andrew
  • 227,796
  • 193
  • 515
  • 708
10
votes
4 answers

Jira JQL that returns date of status change

I'm trying to use JQL to measure cycle times (the Control Chart has other issues), so I need to get the date that an issue changed status. I see that one can use the CHANGED keyword to filter issues that have changed status on certain dates, but I…
ScottEdwards2000
  • 15
  • 1
  • 8
  • 21
10
votes
1 answer

How to resolve a JIRA issue from GitHub commit messages?

I have configured the JIRA bug tracking system with GitHub DVCS. But when I commit the task with message of JIRA key and resolve status, it does not change the status as resolved in JIRA. Is there any command to change the bug status in JIRA from…
mike_dan
  • 111
  • 2
  • 5
10
votes
1 answer

Atlassian JIRA Plugin Development: How to make variables available to velocity templates

FAIR WARNING: this question is going to be pretty tough to answer unless you have experience with JIRA and have access to their source (enterprise users). Greetings all, I am writing a plugin which extends AbstractIssueSelectAction. I noticed that…
cmyers
  • 1,110
  • 13
  • 15
10
votes
2 answers

How to use Basic Authentication with JIRA REST API in JavaScript?

I'm creating a JavaScript app for a Smart TV to show dashboards on the tv. I get the list of dashboards with the JIRA REST API. The url I use for this is: jira/rest/api/2/dashboard?startAt=&maxResults= afterwards I create a wallboard as followed to…
10
votes
3 answers

Assembla Redmine JIRA Zoho Yodiz review and/or alternatives

I'm looking for a AaaS to handle the agile/scrum project management for a commercial software development project. We are probably going to use git as SCM and ideally we would like to have a good integration between the code changes in SCM and the…
movees
  • 183
  • 1
  • 15
10
votes
4 answers

How to POST attachment to JIRA using REST API?

How to POST attachment to JIRA using JIRA REST API and HttpWebRequest in C#? From the documentation under /rest/api/2/issue/{issueIdOrKey}/attachments: POST Add one or more attachments to an issue. This resource expects a multipart post. The…
Jiří Hejduk
  • 101
  • 1
  • 1
  • 4