At the moment I'm trying to create reports on the status of tickets out of multiple projects in JIRA. I can use the JIRA Macro in confluence and get the correct columns to be displayed using JQL filters.
However, I want to have a weekly static snapshot with all this information in the table, but I would also like to add a column to the table that can be completed from within Confluence so no one needs to go to each JIRA ticket to add some commentary to the report. Is this possible with vanilla? Or is there another way to do it?
Field I have from JIRA:
- Key
- Summary
- Priority
- Status
- Type
- Story Points
- Labels
- Supporting Information (custom field)
- And I would like to add a Notes field in the confluence table for the teams to complete with summaries.
Unfortunately, you won't be able to do this with the jira issues macro. You can request this as a new feature here: System Dashboard - Create and track feature requests for Atlassian products.
Or check the marketplace for plugins.
Regards
I suspected that would be the case.
Thank you for confirming
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Brian Walker You can query the history of a JIRA-Ticket. See https://community.atlassian.com/t5/Jira-articles/Becoming-a-JIRA-Search-Ninja-History-searches-in-JIRA/ba-p/461943.
E.g.
project = PPLUS AND status WAS "In Progress" ON "2017-01-01"
project = PPLUS AND status WAS "In Progress" DURING ("2017-01-01", "2017-01-31")
project = PPLUS AND status CHANGED FROM "In Progress" TO "Awaiting Code Review" ON "2017-03-15"
This might provide you with an automatic or at least semi-automatic way of doing what you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.