Skip to content

Commit 7aa7453

Browse files
committed
ci: cron schedule for workflows, merge_group support.
This commit does two things: * In preparation for one day enabling merge queue on this repo, it adds `merge_group` as a trigger for the CI tasks. * It adds a `schedule` trigger that will run the CI tasks weekly, to detect bitrot sooner than we might otherwise.
1 parent ec81351 commit 7aa7453

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ name: rustls-ffi
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: '15 12 * * 3'
712

813
jobs:
914
build:

0 commit comments

Comments
 (0)