Skip to content

Commit 078a3db

Browse files
committed
Run CI on a weekly schedule
Probably don't need daily runs given the amount of changes. Run on Friday mornings so we can catch clippy changes from Rust releases that happen on Thursday relatively soon after. Also include merge group support.
1 parent 5a1a0e4 commit 078a3db

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ name: rustls
33
permissions:
44
contents: read
55

6-
on: [push, pull_request]
6+
on:
7+
push:
8+
pull_request:
9+
merge_group:
10+
schedule:
11+
- cron: '23 6 * * 5'
712

813
jobs:
914
build:

0 commit comments

Comments
 (0)