Skip to content

Commit

Permalink
Filter release notes to only release-note-required label (tigera#3286)
Browse files Browse the repository at this point in the history
  • Loading branch information
danudey authored Oct 1, 2024
1 parent 1a50b81 commit 3c92482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-release-notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def issues_in_milestone():
# Found the milestone in this repo - look for issues (but only
# ones that have been closed!)
issues = []
for i in repo.get_issues(milestone=m, state="closed"):
for i in repo.get_issues(milestone=m, state="closed", labels=['release-note-required']):
pr = i.as_pull_request()
if pr.merged:
# Filter out PRs which are closed but not merged.
Expand Down

0 comments on commit 3c92482

Please sign in to comment.