Issues commented by me in JIRA

后端 未结 11 1129
你的背包
你的背包 2021-02-02 07:00

As per JIRA documentation http://www.atlassian.com/software/jira/docs/latest

The following filter will show the issues opned by me (Current User).

repor         


        
相关标签:
11条回答
  • 2021-02-02 07:27

    You could also follow the approach presented by Matt Doar:

    Use a participants field from the JIRA Toolkit plugin and query that

    http://confluence.atlassian.com/display/JIRA/Advanced+Searching?focusedCommentId=229838922#comment-229838922

    It's not a a complete answer but maybe a step in the right direction... Francis

    0 讨论(0)
  • 2021-02-02 07:27

    You can try that workaround I am current using this expression on my saved search:

    comment ~ "your.username.here"

    This in fact catch the comments where I was mentioned, but if you mention yourself probably should works. I have not tried by myself.

    My current Jira is a cloud based one, so I can't tell you exactly which version is.

    0 讨论(0)
  • 2021-02-02 07:27

    I had the same problem and

    issueFunction in commented("by username") 
    

    worked for me

    The following query identifies tickets in which current (or some other particular) user was mentioned in comments:

    comment ~ currentUser()
    
    0 讨论(0)
  • 2021-02-02 07:29

    If you're talking only about the current user, there is a personal Activity Stream in your profile

    https://xxx.atlassian.net/secure/ViewProfile.jspa
    

    It includes actions other than comments, but does provide an RSS feed which you could filter only comments with:

    <category term="comment"/>
    
    0 讨论(0)
  • 2021-02-02 07:30

    For filtering issues in which you have been mentioned, try comment ~ currentUser()

    0 讨论(0)
  • 2021-02-02 07:50

    You can use the Activity Stream gadget with a filter configured by username and activity type. Note that this requires a case-sensitive username, not the friendly Display Name.

    Activity Stream gadget configuration:

    Filtered Activity Stream display:

    (I posted a variation of this answer elsewhere but have improved my filter since then and the new filter is more salient to this question anyhow.)

    0 讨论(0)
提交回复
热议问题