Skip to content

Commit

Permalink
Add daily scheduled runs to build, lint, and test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lebr0nli committed Nov 6, 2024
1 parent 691ea6d commit 6fccedb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- '**'
- '!*.md'

schedule:
- cron: '0 1 * * *'

jobs:
build:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- '**'
- '!*.md'

schedule:
- cron: '0 1 * * *'

jobs:
lint:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- '**'
- '!*.md'

schedule:
- cron: '0 1 * * *'

jobs:
tests:
strategy:
Expand Down

0 comments on commit 6fccedb

Please sign in to comment.