diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 5a3b4b0749..1b983339ba 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -5,6 +5,8 @@ name: Documentation on: + schedule: + - cron: '30 0 * * *' push: branches: - 3.x diff --git a/.github/workflows/frontend.yaml b/.github/workflows/frontend.yaml index e3eac32e80..58695c03a0 100644 --- a/.github/workflows/frontend.yaml +++ b/.github/workflows/frontend.yaml @@ -5,6 +5,8 @@ name: Frontend on: + schedule: + - cron: '30 0 * * *' push: branches: - 4.x diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 7419f77222..51dcfad0ae 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -5,6 +5,8 @@ name: Lint on: + schedule: + - cron: '30 0 * * *' push: branches: - 3.x diff --git a/.github/workflows/qa.yaml b/.github/workflows/qa.yaml index 267b778988..0193ed0c63 100644 --- a/.github/workflows/qa.yaml +++ b/.github/workflows/qa.yaml @@ -5,6 +5,8 @@ name: Quality assurance on: + schedule: + - cron: '30 0 * * *' push: branches: - 3.x diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e0aa6a74df..14fe93117f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,6 +5,8 @@ name: Test on: + schedule: + - cron: '30 0 * * *' push: branches: - 3.x diff --git a/Makefile b/Makefile index ff76e5a82c..b764ceb015 100644 --- a/Makefile +++ b/Makefile @@ -98,5 +98,5 @@ phpstan: .PHONY: phpstan psalm: - vendor/bin/psalm + vendor/bin/psalm --php-version=8.1 .PHONY: psalm