jira

JIRA: Find all issues related to a user

血红的双手。 提交于 2019-12-02 17:07:19
In JIRA, how do a find all issues related to a user, across all projects. A simple query search yields only full text results. i.e. only issues where the name is mentioned and not if the name has been assigned, has reported, has been cc’d etc. My intention here is to find tickets related to me for stock accounting... I am using JIRA 3.13 Edson Medina assignee = currentUser() OR assignee was currentUser() OR reporter = currentUser() This will suffice the query Just had the same 'stock accounting' use case: If you like to get an overview of the issues where you were involved to, just go to the

I want to access Jira (Docker on Synology DS716+II) from LAN not only via IP_OF_SYNOLOGY:PORT but for example jira.synology.local

五迷三道 提交于 2019-12-02 16:26:52
问题 I am working with a Synology NAS type aDS716+II, DSM 6.1.4-15217 Update 2 on wich runs Docker with a Jira container. So now what I want to do I'm assinged to get to work is to access Jira's webinterface with let's say jira.synology.local with synology being the servername. I read a lot about nginx and how it's built in since DSM 6.X but I don't seem to get it to work properly at all. I can access Jira's webinterface from another machine within the LAN via IP_OF_SYNOLGY:PORT so when setting up

JIRA: Epics vs Labels vs Components

六眼飞鱼酱① 提交于 2019-12-02 15:01:46
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 ability to see previous purchases. So if (as a product owner) I have a large feature I want delivered that will comprise many smaller tasks and likely span sprints, then an epic is a good choice. However, I could just as easily create a (using the example from the blog) "Account Management" component, and any task related to that feature have that

JIRA Plugin: Where to start

☆樱花仙子☆ 提交于 2019-12-02 14:48:17
问题 I was asked to create a simple JIRA plugin that combines Workflow + Custom Fields + Conditional Steps I just started installing JIRA and finally managed to create a run a simple Hello World Plugin. I am already confused with how huge this interface is, and cannot seem to be able to grasp the big picture Could any of you send me to the right direction? An idea on what could include all these? 回答1: It might be a good idea to start with the scriptrunner plugin. This enables you to write custom

Jira是什么

℡╲_俬逩灬. 提交于 2019-12-02 14:45:16
JIRA这个工具接触有好几年了,在多个海外项目上都用过这个工具。去年又在项目上深度使用后就有点爱不释手了,回国后也在找机会推荐给其它项目上用。最近正好有新项目需要用,借这个机会把JIRA的配置学习的过程记录下来。 JIRA和Atlassian公司 JIRA是Atlassian公司的产品。Atlassian公司于2002在澳大利亚悉尼成立,提供面向企业业务流程的协同办公产品,并于2015年12月在纳斯达克上市。作为一家SaaS公司,不雇佣一个销售人员,仅通过口碑获客,市值达10亿美金级别(64亿美元-2017年3月13日),这也从另外角度反映出这个产品的独特之处。 Atlassian主要有5款产品,分别面向不同的市场。 JIRA(项目任务管理软件) Confluence(企业知识管理与协同软件) BitBucket(代码库) HipChat(内部聊天/协作软件) JIRA Service Desk(服务台软件)。 Atlassian最核心的产品仍然是 JIRA 和 Confluence ,JIRA被业界公认为最好的项目管理和开发管理工具,Confluence 被认为是最好用的企业级知识管理工具。 包括美国航空航天局使用Atlassian来设计火星探测器,Runkeeper使用Atlassian来设计健身应用。eBay、宝马、花旗都是Atlassian客户。传闻世界 500 强企业里

I want to access Jira (Docker on Synology DS716+II) from LAN not only via IP_OF_SYNOLOGY:PORT but for example jira.synology.local

笑着哭i 提交于 2019-12-02 12:47:21
I am working with a Synology NAS type aDS716+II, DSM 6.1.4-15217 Update 2 on wich runs Docker with a Jira container. So now what I want to do I'm assinged to get to work is to access Jira's webinterface with let's say jira.synology.local with synology being the servername. I read a lot about nginx and how it's built in since DSM 6.X but I don't seem to get it to work properly at all. I can access Jira's webinterface from another machine within the LAN via IP_OF_SYNOLGY:PORT so when setting up a reverse proxy on the server it should be pointing to LOCALHOST:PORT right? I have also tried using

updating status in jira via php

落爺英雄遲暮 提交于 2019-12-02 11:59:59
im using a email client that i build to update jira tasks. i have managed to change the assignee and the summary through it. but i cannot seems to find a way to update the status. following is the code i used. $resolution->id="4"; $update->transitions= array($resolution); $queryIssue = new Jira($config); $queryIssue->updateTransition($query,$update); the class: public function updateTransition($issueKey,$json){ $this->request->openConnect('https://'.$this->host.'/rest/api/latest/issue/REC-143/transitions?', 'POST', $json); $this->request->execute(); } this gives me an error saying Missing

SonarQube JIRA plugin - how to configure authorization data and what permissions a user needs?

为君一笑 提交于 2019-12-02 08:23:25
http://docs.sonarqube.org/display/PLUG/JIRA+Plugin In the above instruction: set the sonar.jira.url , sonar.jira.login.secured and sonar.jira.password.secured properties. It's a JIRA user or SonarQube user, or both? What kind of permission this user needs? Jira user Permissions: view project view issues create issue SOAP base URL value is relative to Server URL so you can remove the entered value. 来源: https://stackoverflow.com/questions/33046953/sonarqube-jira-plugin-how-to-configure-authorization-data-and-what-permissions

JIRA Plugin: Where to start

回眸只為那壹抹淺笑 提交于 2019-12-02 08:01:53
I was asked to create a simple JIRA plugin that combines Workflow + Custom Fields + Conditional Steps I just started installing JIRA and finally managed to create a run a simple Hello World Plugin. I am already confused with how huge this interface is, and cannot seem to be able to grasp the big picture Could any of you send me to the right direction? An idea on what could include all these? It might be a good idea to start with the scriptrunner plugin. This enables you to write custom groovy scripts for workflow conditions, validators, post-functions, listeners and many more. The advantage is

How can I get JIRA issue number from a commit message in Jenkins

北城以北 提交于 2019-12-02 07:44:11
I am using Gitlab for our source code management, jenkins for CI jobs and JIRA for issue tracking. Once I commit in gitlab with an issue number for example "Project-123 edited demo file.", I have a jenkins hook that triggers a build. I have the JENKINS's Jira Plugin and use Progress JIRA issues by workflow action. I have a two part question: my JQL for searching for the issue is: project=PROJ and status="Build Started" and updated >= "-15m" My workflow action is Jenkins Build is Successful. However, if i have multiple builds running, when the first build completes successfully it will