Skip to content

Commit

Permalink
only count events from start of current week for new builders (#4920)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasey authored Oct 30, 2024
1 parent 6f19537 commit bbe6667
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function processAllBuilderActivity(
await processBuilderActivity({
builderId: builder.id,
githubUser: builder.githubUser[0]!,
createdAfter: newBuilder ? getDateFromISOWeek(season).toJSDate() : createdAfter,
createdAfter: newBuilder ? getDateFromISOWeek(getCurrentWeek()).toJSDate() : createdAfter,
season
});

Expand Down

0 comments on commit bbe6667

Please sign in to comment.