Skip to content

Commit

Permalink
Merge pull request #2569 from mainmatter/fix-scheduled-ci
Browse files Browse the repository at this point in the history
skip CI steps on scheduled CI runs
  • Loading branch information
marcoow authored Nov 27, 2024
2 parents 3bb4cb8 + 607fa1d commit 99a5195
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 99a5195

Please sign in to comment.