From 45c68a991d0a79c9608538f75788ea1b57fd9e10 Mon Sep 17 00:00:00 2001 From: Tom de Bruijn Date: Fri, 12 Jan 2024 08:56:18 +0100 Subject: [PATCH] Skip Git linter on scheduled event (#188) There's a bug or something on the scheduled build, so skip it for now. Following the docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsif --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a9f11c..ac38d61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,7 @@ jobs: lint-git: name: "Git linter (Lintje)" runs-on: ubuntu-latest + if: ${{ github.event_name != 'schedule' }} steps: - uses: actions/checkout@v4 with: