Skip to content

Commit

Permalink
Run CI on a recurring schedule (#300)
Browse files Browse the repository at this point in the history
In addition to running on every push or pull request, the CI action
will now run on a recurring schedule of once a month.

The schedule is set to run on the 1st of each month at 02:03 UTC time.
The time is completely arbitrary but I avoided the top/bottom of the
hour since most cron jobs tend to occur there.
  • Loading branch information
cmason authored Sep 14, 2023
1 parent 7037c81 commit 5e44548
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: CI

on:
- push
- pull_request
push:
pull_request:
schedule:
- cron: "3 2 1 * *"

jobs:
test:
Expand Down

0 comments on commit 5e44548

Please sign in to comment.