Skip to content

Commit

Permalink
Set daily workflows to only execute on weekdays (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbown authored Sep 16, 2024
1 parent 34af384 commit 723a597
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle-ethereum-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: reference tests

on:
schedule:
- cron: "0 23 * * *"
- cron: "0 23 * * 1-5"

env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Nightly Tests

on:
schedule:
- cron: "0 22 * * *"
- cron: "0 22 * * 1-5"
workflow_dispatch:

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reference-blockchain-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Daily Reference Blockchain Tests

on:
schedule:
- cron: 0 21 * * *
- cron: 0 21 * * 1-5
workflow_dispatch:
inputs:
failed_tests_file_name:
Expand Down

0 comments on commit 723a597

Please sign in to comment.