From f0c697f606273aa0c03175c66dc4cefc46987d34 Mon Sep 17 00:00:00 2001 From: Lina Wolf <48202465+linawolf@users.noreply.github.com> Date: Tue, 2 Jun 2026 15:43:20 +0200 Subject: [PATCH] Add scheduled workflow to check and fix whitespace (#131) Releases: main, 14.3, 13.4 (cherry picked from commit eb8a5527cbc0bab6204ac7ac9cbf1f0240816155) --- .github/workflows/apply-precommit.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/apply-precommit.yml diff --git a/.github/workflows/apply-precommit.yml b/.github/workflows/apply-precommit.yml new file mode 100644 index 0000000..02e8f70 --- /dev/null +++ b/.github/workflows/apply-precommit.yml @@ -0,0 +1,13 @@ +name: Check and Fix Whitespace on Schedule + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + fix-whitespace: + uses: TYPO3-Documentation/.github/.github/workflows/reusable-apply-precommit.yml@6cdf90e700f7c32376aa2cb2d96a201b67c77ed2 + secrets: + APP_CLIENT_ID: ${{ secrets.APP_ID }} + APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}