File tree Expand file tree Collapse file tree 2 files changed +19
-7
lines changed
Expand file tree Collapse file tree 2 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,13 @@ name: Run CI
22
33on :
44 push :
5- branches : " *"
6- tags : ' v[0-9]+![0-9]+.[0-9]+.[0-9]+*'
5+ branches : ["*"]
6+ tags :
7+ - ' v[0-9]+![0-9]+.[0-9]+.[0-9]+*'
78 pull_request :
8- branches : " *"
9- schedule :
10- # run every Saturday at 11 EST / 12 EDT
11- # because new Pydantic versions keep breaking things :(
12- - cron : 0 16 * * 6
9+ branches : ["*"]
10+ workflow_call :
11+ workflow_dispatch :
1312
1413permissions :
1514 contents : read
Original file line number Diff line number Diff line change 1+ # this is a separate workflow to prevent the main CI workflow from being automatically disabled due to inactivity
2+
3+ name : Run CI (scheduled)
4+
5+ on :
6+ schedule :
7+ # run every Saturday at 11 EST / 12 EDT
8+ # because new Pydantic versions keep breaking things :(
9+ - cron : 0 16 * * 6
10+
11+ jobs :
12+ ci :
13+ uses : ./.github/workflows/ci.yml
You can’t perform that action at this time.
0 commit comments