Skip to content

Commit

Permalink
fix(l1, l2, levm): do not run reporters on weekend (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilitteri authored Dec 2, 2024
1 parent 6ff61be commit 5028fc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hive_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Daily Hive Coverage
on:
schedule:
# Every day at UTC midnight
- cron: "0 0 * * *"
- cron: "0 0 * * 1,2,3,4,5"
workflow_dispatch:

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/levm_reporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Daily LEVM Reporter
on:
schedule:
# Every day at midnight
- cron: "0 0 * * *"
- cron: "0 0 * * 1,2,3,4,5"
workflow_dispatch:

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/loc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Daily Lines of Code Report
on:
schedule:
# Every day at midnight
- cron: "0 0 * * *"
- cron: "0 0 * * 1,2,3,4,5"
workflow_dispatch:

env:
Expand Down

0 comments on commit 5028fc2

Please sign in to comment.