File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11name : test documentation
22
3- on : [ push, pull_request ]
3+ on :
4+ push :
5+ pull_request :
6+ schedule :
7+ - cron : " 0 3 * * *" # every day at 03:00 UTC
48
59jobs :
610 tests :
11+ # Run always on push/PR, but only run on schedule in the main repo
12+ if : github.event_name != 'schedule' || github.repository == 'TYPO3-Documentation/TYPO3CMS-Reference-CoreApi'
713 name : documentation
814 runs-on : ubuntu-latest
915 steps :
Original file line number Diff line number Diff line change @@ -3,9 +3,13 @@ name: tests
33on :
44 push :
55 pull_request :
6+ schedule :
7+ - cron : " 0 3 * * *" # every day at 03:00 UTC
68
79jobs :
810 lint :
11+ # Run always on push/PR, but only run on schedule in the main repo
12+ if : github.event_name != 'schedule' || github.repository == 'TYPO3-Documentation/TYPO3CMS-Reference-CoreApi'
913 name : Linting
1014 runs-on : ubuntu-latest
1115 strategy :
2226 run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
2327
2428 quality :
29+ # Run always on push/PR, but only run on schedule in the main repo
30+ if : github.event_name != 'schedule' || github.repository == 'TYPO3-Documentation/TYPO3CMS-Reference-CoreApi'
2531 name : Quality
2632 runs-on : ubuntu-latest
2733 env :
You can’t perform that action at this time.
0 commit comments