The latest version of the config file is here: https://github.com/forthix/forthix-apps/blob/main/Jira%20Cloud/Dynamic%20Status%20History/config.forthic
Sample Configuration
Code Block |
---|
# Used to determine the number of dates to show in the report : NUM-DATES 15; # Number of dates in the status history : DATE-INTERVAL 2; # Number of days between dates : END-DATE TODAY; # The right-most date in the status history # The maximum number of tickets to show in the report (Click refresh button after changing this) : MAX-TICKETS 25; # The JQL used to find the parent tickets (Click refresh button after changing this) : PARENT-JQL ["project = " jira.PROJECT-KEY " and issuetype=Story and updated >= -30d order by updated DESC"] CONCAT; # Used to order the tickets in the report by status : STATUS>ORDER [ ["BLOCKED" 1] ["IN PROGRESS" 2] ["DONE" 3] ["TO DO" 4] ] REC SWAP UPPERCASE REC@ 100 DEFAULT; |
...