Skip to content

Commit

Permalink
skip CI steps on scheduled CI runs
Browse files Browse the repository at this point in the history
…since nothing can have broken but this should still be enough to trigger Netlify
  • Loading branch information
marcoow committed Nov 27, 2024
1 parent 3bb4cb8 commit 607fa1d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
lint:
name: Linting
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand All @@ -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
Expand Down Expand Up @@ -62,6 +64,7 @@ jobs:
performance:
name: 'Performance'
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down Expand Up @@ -91,6 +94,7 @@ jobs:
crawl:
name: 'Crawl Links'
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down Expand Up @@ -118,6 +122,7 @@ jobs:
gravity:
name: 'Gravity'
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down

0 comments on commit 607fa1d

Please sign in to comment.