Skip to content

Commit 98e20ef

Browse files
authored
Reduce eval frequency (#852)
Evals would previously run 3 times/day. We now have evals on every release PR and don't need to run them as frequently. We now just run evals once/day at midnight UTC.
1 parent 39d0251 commit 98e20ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/daily_evals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Daily Evals
22

33
on:
44
schedule:
5-
- cron: '0 */8 * * *' # Run 3 times a day
5+
- cron: '0 0 * * *' # Run once a day at midnight UTC
66
workflow_dispatch: # Allow manual triggering
77

88
jobs:

0 commit comments

Comments
 (0)