Skip to content

Commit

Permalink
filter out old prs
Browse files Browse the repository at this point in the history
  • Loading branch information
b-rodrigues committed Jun 1, 2024
1 parent 9184635 commit e13666d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion _targets.R
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ list(
prs_df,
rbind(open_prs, merged_prs) |>
subset(#subset = state != "merged",
select = c("fails_because_of", "PR", "PR_date", "state")
select = c("fails_because_of", "PR", "PR_date", "state"),
PR_date > as.Date("2024-05-01") # change this date manually to avoid having
# merged PRs listed from old fixes. This happens
# if packages fail again
)
),

Expand Down

0 comments on commit e13666d

Please sign in to comment.