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
4 changes: 3 additions & 1 deletion nixpkgs_review/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ def get_github_action_eval_result(
return None

for workflow_run in workflow_runs:
if workflow_run["name"] != "Eval":
# "Eval" could be removed after a transition period, when
# all pull requests run with the new PR workflow.
if workflow_run["name"] not in ("Eval", "PR"):
continue
artifacts: list[Any] = self.get(
workflow_run["artifacts_url"],
Expand Down