From 93a83c740cf86219033c11814a401cd730b20a99 Mon Sep 17 00:00:00 2001 From: Jason Chui Date: Fri, 3 Jul 2026 10:49:03 -0400 Subject: [PATCH] fix(rhdh-release): improve release_notes JQL to check all required fields The previous query only checked if "Release Note Type" was empty. The updated query also verifies Release Note Status, Release Note Text, and Release Note Type Dropdown are properly filled in, and excludes CVEs, obsolete/duplicate/Won't Do resolutions, and issues marked as "Release Note Not Required". Co-authored-by: Cursor --- skills/rhdh-release/references/jql-release.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/rhdh-release/references/jql-release.md b/skills/rhdh-release/references/jql-release.md index afc92c3..0a2e4b7 100644 --- a/skills/rhdh-release/references/jql-release.md +++ b/skills/rhdh-release/references/jql-release.md @@ -116,12 +116,12 @@ project in (RHDHPlan, rhidp) AND issuetype = feature AND fixVersion = "{{RELEASE Find issues missing Release Note Type field. ```jql -project in (RHIDP, "Red Hat Developer Hub Bugs", "RHDH Support", rhdhplan) and issuetype in (Feature, bug) and "Release Note Type" is EMPTY and fixVersion = "{{RELEASE_VERSION}}" +project in (RHIDP, "Red Hat Developer Hub Bugs", "RHDH Support", rhdhplan) and issuetype in (Feature, bug) and ("Release Note Type" not in ("Release Note Not Required") or "release note type" is empty) and ("Release Note Status" not in ("In Progress", Proposed, Done) or "Release Note Text[Paragraph]" is empty or "Release Note Type[Dropdown]" is empty) and summary !~ "CVE-*" and (resolution not in (obsolete, duplicate, "Won't Do") or resolution is empty) and fixVersion = "{{RELEASE_VERSION}}" ``` - **Placeholders:** `{{RELEASE_VERSION}}` -- **Example:** `... AND "Release Note Type" is EMPTY and fixVersion = "1.9.0"` -- **Notes:** Critical for documentation — must be filled before release. +- **Example:** `... and fixVersion = "2.1.0"` +- **Notes:** Critical for documentation — must be filled before release. Excludes CVEs, obsolete/duplicate/Won't Do resolutions, and issues marked "Release Note Not Required". Checks that Release Note Status, Text, and Type are all properly completed. ## blockers