Skip to content

Commit

Permalink
Allowing long return window and adding 'improvement' category (#4565)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 authored Jun 3, 2024
1 parent 663ee81 commit 72f22a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/github_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def release_notes(pull_request_number: int) -> NoReturn:
dispatch_pr_url = "https://github.com/Netflix/dispatch/pull/"
exclude_bot_authors = True
exclude_labels = ["skip-changelog", "UI/UX", "javascript"]
gh_pr_list_merged_command = 'gh pr list -s merged --json "title,author,number,labels" -L 250'
gh_pr_list_merged_command = 'gh pr list -s merged --json "title,author,number,labels" -L 2000'
sections = {
"bug": "",
"dependencies": "",
Expand All @@ -97,6 +97,7 @@ def release_notes(pull_request_number: int) -> NoReturn:
"feature": "",
"techdebt": "",
"tests": "",
"improvement": "",
}

click.echo(f"Fetching list of merged PRs since #{pull_request_number}...")
Expand Down

0 comments on commit 72f22a7

Please sign in to comment.