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
267
votes
22 answers

Error: unable to verify the first certificate in nodejs

I'm trying to download a file from jira server using an URL but I'm getting an error. how to include certificate in the code to verify? Error: Error: unable to verify the first certificate in nodejs at Error (native) at TLSSocket.
Labeo
  • 5,831
  • 13
  • 47
  • 77
205
votes
12 answers

How to find issues that at some point has been assigned to you?

We use Jira extensively in our project, but I often have a hard time finding issues, that I know, I have been working on earlier. Usually, if some case is reported, that seems familiar to something I have been working on in the past, but I don't…
erikric
  • 4,049
  • 8
  • 32
  • 44
117
votes
9 answers

How to check work log for individuals in Jira

I want to see how many total hours I have logged in Jira. Currently Jira shows a work log for individual story / sub tasks. But is it possible to show the total amount of work logged in Jira by individual developer? It would be nice if it shows a…
Priyank Doshi
  • 12,895
  • 18
  • 59
  • 82
111
votes
7 answers

Find issues that were ever assigned to me

I am trying to create a filter to search for all issues that were ever assigned to me, even after the assignee is changed. I cant find the appropriate search parameters for this. Is it even possible in jira?
Midhat
  • 17,454
  • 22
  • 87
  • 114
98
votes
8 answers

JIRA JQL searching by date - is there a way of getting Today() (Date) instead of Now() (DateTime)

I am trying to create some Issue Filters in JIRA based on CreateDate. The only date/time function I can find is Now() and searches relative to that, i.e. "-1d", "-4d" etc. The only problem with this is that Now() is time specific so there is no way…
Shevek
  • 3,869
  • 5
  • 43
  • 63
90
votes
4 answers

JIRA: Epics vs Labels vs Components

This blog has a definition of epics in JIRA: Epics are significantly larger bodies of work. Epics are feature-level work that encompasses many user stories. Using the above example, an epic might be the entire account management feature and the…
Adam Parkin
  • 17,891
  • 17
  • 66
  • 87
78
votes
7 answers

JIRA: to close or to resolve?

You can reopen both a resolved and a closed issue in JIRA. What's the practical difference? (besides requiring different permissions to resolve/close issues e.g. if QA is involved) We have some differences of opinion in our team for whether to…
Jason S
  • 184,598
  • 164
  • 608
  • 970
64
votes
9 answers

How do I connect github to JIRA?

I've been trying to find a way to update JIRA when I commit to github. It doesn't look like there are any service hooks to do it at github, but you never know, someone might have a ninja way, so I thought I'd ask.
user675202
  • 641
  • 1
  • 5
  • 3
59
votes
9 answers

Free alternative to Atlassian Greenhopper/PivotalTracker?

I'm working with my brother on a website idea we have, and we'd like to use a tool to plan sprints and assign estimates to individual tickets. Atlassian's JIRA+Greenhopper looks fantastic but costs $20/month and at this stage we're just validating…
sergserg
  • 21,716
  • 41
  • 129
  • 182
59
votes
8 answers

Best practice of using components in jira projects

We are using Jira heavily in our day to day development. I'd like to see if there are any best practices in creating project components in Jira? For example, in your opinion, is it better to create a component for each development module in Jira or…
ashkrosh
  • 839
  • 2
  • 9
  • 11
57
votes
13 answers

JIRA - Resolved by me query

How to write query that will select only issues resolved by me. I have found some old post that says its no possible, but it might have changed.
IAdapter
  • 62,595
  • 73
  • 179
  • 242
56
votes
6 answers

Make Jira links clickable in Github

Is there a way I can make Jira ticket id's on Github link to Jira? (much the same way as how it happens on Bitbucket). Maybe there is a plugin or something I could use ? EDIT: I specifically want ticket id's in Github to link through to Jira, this…
Willem D'Haeseleer
  • 19,661
  • 9
  • 66
  • 99
54
votes
7 answers

Jira: assign an existing git branch to an issue

In JIRA connected with STASH you can create a feature branch for an issue using the button 'create branch'. (That is nice to track the commits in this issue.) If a developer started working but did not know that there is such an issue he did not…
550
  • 1,070
  • 1
  • 13
  • 28
51
votes
11 answers

Issues commented by me in JIRA

As per JIRA documentation http://www.atlassian.com/software/jira/docs/latest The following filter will show the issues opned by me (Current User). reporter = currentUser() Is there a filer that will show issues commented by me? something like the…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
50
votes
4 answers

How can I add JSON highlighting to the code in Jira comment?

Is it possible to add a highlighted code to Jira comment? I want to write something like this: The comment text and JSON doc: { "key": 100 } I've found only one example: {code:javascript} { "key": 100 } {code} But it does not really…
Finkelson
  • 2,921
  • 4
  • 31
  • 49
1
2 3
99 100