Automatic custom field

Issue #714 resolved
Steffen created an issue

Hi Fidel,

I haven't tried this until now....

I want a custom field, that is filled automatically with the issues key(s) of specific issue link types? For example:

I've got a requirement that is linked to a test via "is tested by" and also to a task via "relates to". Now I want the custom field to display only the issue-keys that are linked via "is tested by".

Is this possible??? I have no clue how to handle this....

Steffen

Comments (3)

  1. Fidel Castro Armario repo owner

    You can use a "Calculated Text Field" or post-function "Copy a parsed text to a field":

    • Parsing mode: advanced
    • Text to be parsed:
    toString(linkedIssues("is tested by"))
    

    Another examples of string expressions are:

    toString(linkedIssues("is tested by, relates to, blocks"))
    
    toString(filterByIssueType(linkedIssues("is tested by"), "Test"))
    
  2. Log in to comment