Skip to content

Commit

Permalink
Reduce scheduled CI frequency
Browse files Browse the repository at this point in the history
From daily to weekly.
  • Loading branch information
ongardie committed Oct 21, 2024
1 parent fa10996 commit 37c85d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches:
- main
schedule:
- cron: 0 16 * * *
- cron: 0 16 * * 2
workflow_dispatch: {}
jobs:
build-macos-13-stable:
Expand Down
6 changes: 3 additions & 3 deletions src/bin/gen_github_yaml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ fn ci_workflow() -> Workflow {
"branches": ["main"],
},
"pull_request": {},
// Run daily to catch breakages in new Rust versions as well as new
// cargo audit findings.
// Run weekly to catch breakages in new Rust versions as well as
// new cargo audit findings.
"schedule": [
{"cron": "0 16 * * *"},
{"cron": "0 16 * * 2"},
],
// Allows you to run this workflow manually from the Actions tab.
"workflow_dispatch": {},
Expand Down

0 comments on commit 37c85d4

Please sign in to comment.