Skip to content

Commit

Permalink
Run CI at 4am every day
Browse files Browse the repository at this point in the history
Ensures the build still works during periods of inactivity.

Note that:

> In a public repository, scheduled workflows are automatically disabled when no
> repository activity has occurred in 60 days.
-- https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule
  • Loading branch information
markhobson committed Nov 7, 2024
1 parent 9c50c06 commit 860968d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches: [ main ]
tags: [ '*' ]
schedule:
- cron: '0 4 * * *'

jobs:

Expand Down

0 comments on commit 860968d

Please sign in to comment.