Skip to content

Commit

Permalink
fix(PRs): cut-off via merged date
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewuu committed Jul 2, 2024
1 parent 7bc57b6 commit 3308517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/reporting/send-contributor-pull-requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function sendContributorPullRequests(
.where('contributor_id', '=', contributor.id)
.where('github_repo_id', '=', repo.id)
.where('merged_at', 'is not', null)
.where('created_at', '>', cutOffDate)
.where('merged_at', '>', cutOffDate)
.select(['homie.pull_request.html_url', 'homie.pull_request.title'])
.orderBy('merged_at')
.execute()
Expand Down

0 comments on commit 3308517

Please sign in to comment.