Skip to content
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
2 changes: 1 addition & 1 deletion .github/update_release_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""
headers = {
"Authorization": f"token {token}",
"Accept": "application/vnd.github.v3+json",

Check warning on line 24 in .github/update_release_pr.py

View workflow job for this annotation

GitHub Actions / Check Spelling

`vnd` is not a recognized word. (unrecognized-spelling)
}

# This endpoint allows filtering by label(and milestone). A PR in GH's perspective is a type of issue.
Expand Down Expand Up @@ -89,7 +89,7 @@
count += 1

print(
f"Found {count} PRs with {label if label else 'no filter on'} label, state as {state}, and milestone {pr["milestone"] if pr["milestone"] is not None else "None"}"
f"Found {count} PRs with {label if label else 'no filter on'} label, state as {state}, and milestone {milestone_title if milestone_title else "any"}"
)

return pr_list
Expand Down Expand Up @@ -154,7 +154,7 @@
"""
headers = {
"Authorization": f"token {token}",
"Accept": "application/vnd.github.v3+json",

Check warning on line 157 in .github/update_release_pr.py

View workflow job for this annotation

GitHub Actions / Check Spelling

`vnd` is not a recognized word. (unrecognized-spelling)

Check warning on line 157 in .github/update_release_pr.py

View workflow job for this annotation

GitHub Actions / Check Spelling

`vnd` is not a recognized word. (unrecognized-spelling)
"Content-Type": "application/json",
}

Expand Down
Loading