Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions utils/github_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}...")
Expand Down Expand Up @@ -137,6 +139,15 @@ def release_notes(pull_request_number: int) -> NoReturn:
Tech Debt:
{sections["techdebt"]}

Dependencies:
{sections["dependencies"]}

Docker:
{sections["docker"]}

Security:
{sections["security"]}

Tests:
{sections["tests"]}

Expand Down
Loading