From dd035f9b8dc0f88037bd904c619d432caf642b1a Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Fri, 20 Dec 2024 16:08:49 -0800 Subject: [PATCH 1/3] fix(utils): adding new labels --- utils/github_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/github_utils.py b/utils/github_utils.py index 837ab78fbe12..09839c2311ba 100755 --- a/utils/github_utils.py +++ b/utils/github_utils.py @@ -100,6 +100,8 @@ def release_notes(pull_request_number: int) -> NoReturn: "tests": "", "improvement": "", "docker": "", + "security": "", + "chore": "", } click.echo(f"Fetching list of merged PRs since #{pull_request_number}...") From 2c2adb35fcb6174f362a390178a1fb13a2d904b3 Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Sun, 5 Jan 2025 17:30:55 -0800 Subject: [PATCH 2/3] adding new tags as sections to release notes --- utils/github_utils.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/utils/github_utils.py b/utils/github_utils.py index 09839c2311ba..647be4b8595c 100755 --- a/utils/github_utils.py +++ b/utils/github_utils.py @@ -142,6 +142,18 @@ def release_notes(pull_request_number: int) -> NoReturn: Tests: {sections["tests"]} +Dependencies: + {sections["dependencies"]} + +Docker: + {sections["docker"]} + +Security: + {sections["security"]} + +Tests: + {sections["tests"]} + Documentation: {sections["documentation"]} """ From a4112ed946dfa33b16917fed82a4c0c3cde7bea1 Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Sun, 5 Jan 2025 17:46:17 -0800 Subject: [PATCH 3/3] removing duplicate entry --- utils/github_utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/utils/github_utils.py b/utils/github_utils.py index 647be4b8595c..e5885539df84 100755 --- a/utils/github_utils.py +++ b/utils/github_utils.py @@ -139,9 +139,6 @@ def release_notes(pull_request_number: int) -> NoReturn: Tech Debt: {sections["techdebt"]} -Tests: - {sections["tests"]} - Dependencies: {sections["dependencies"]}