From 607fa1dffdd75103a270a35e05df7a3188433a33 Mon Sep 17 00:00:00 2001 From: Marco Otte-Witte Date: Wed, 27 Nov 2024 08:48:49 +0100 Subject: [PATCH] skip CI steps on scheduled CI runs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …since nothing can have broken but this should still be enough to trigger Netlify --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10e3ed7bf6..79734e4d96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,7 @@ jobs: lint: name: Linting runs-on: ubuntu-latest + if: ${{ github.event_name != 'schedule' }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 @@ -34,6 +35,7 @@ jobs: visual-regressions: name: 'Visual Regressions' runs-on: ubuntu-latest + if: ${{ github.event_name != 'schedule' }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 @@ -62,6 +64,7 @@ jobs: performance: name: 'Performance' runs-on: ubuntu-latest + if: ${{ github.event_name != 'schedule' }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 @@ -91,6 +94,7 @@ jobs: crawl: name: 'Crawl Links' runs-on: ubuntu-latest + if: ${{ github.event_name != 'schedule' }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 @@ -118,6 +122,7 @@ jobs: gravity: name: 'Gravity' runs-on: ubuntu-latest + if: ${{ github.event_name != 'schedule' }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4