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
5 changes: 4 additions & 1 deletion .github/workflows/update-renovate-tracking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,10 @@ jobs:
JQ_FILTER='
[.data.organization.projectV2.items.nodes[] |
select(.content.__typename == "PullRequest") |
select(.content.author.login == "renovate[bot]") |
# GraphQL returns the Renovate bot login as "renovate" (Bot actor),
# whereas the REST API / UI show "renovate[bot]". Accept both so the
# filter matches regardless of which form the API surfaces.
select((.content.author.login // "") | . == "renovate" or . == "renovate[bot]") |
{
id,
pr: "\(.content.repository.nameWithOwner)#\(.content.number)",
Expand Down
Loading