Hi everyone,
I am trying to solve a process problem in Confluence Cloud + Jira, and I am not sure whether I am using the wrong technical approach.
Business use case
We create meeting minutes pages in Confluence from a template about one month in advance.
Each page represents one specific meeting date, for example:
28.04.2026 Meeting Minutes
On each page, we want to display an embedded Jira issue list for the topics relevant to that specific meeting date.
This is important because:
The real process problem
Topics are planned in Jira.
If a topic is postponed from one meeting to the next, it should automatically disappear from the old meeting page and appear on the next one.
So the Confluence page for meeting date X should always show the Jira topics for date X, not for “today”.
What I tried
What works
What does NOT work reliably
Question
Is there any supported way in Confluence Cloud Automation to:
Or is updating the macro via storage/REST fundamentally unsupported / unreliable in Cloud?
If this is not supported, what would be the recommended pattern for this use case?
Thanks in advance
Melissa
I think the key is to avoid inserting a static list of issue keys into the page.
The Jira work items macro stays dynamic if it is based on JQL (or a Jira filter URL), because the macro re-runs the query when the page is viewed. So if a topic is postponed in Jira and no longer matches the query for Meeting A, it should disappear from that page automatically and appear on the next page if it now matches Meeting B.
A pattern that usually works is:
- add a dedicated Jira field for the planned meeting date (or meeting ID)
- create each Confluence page from automation/template
- insert a Jira work items macro whose JQL filters on that field for that specific meeting
For example, instead of embedding specific issue keys, the macro should query something like: "Meeting date" = "2026-04-28"
That way the Confluence page becomes a live view of Jira data, not a snapshot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.