Skip to content

Commit

Permalink
Merge pull request #14 from stainless-code/CI/bypass-status-checks-fo…
Browse files Browse the repository at this point in the history
…r-changesets

bypass status check for `changeset-release/main` branch
  • Loading branch information
SutuSebastian authored Nov 20, 2024
2 parents 664a23b + a268500 commit d7b7794
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 @@ -7,6 +7,7 @@ on:

jobs:
format:
if: github.event.pull_request.head.ref != 'changeset-release/main'
name: 💅 Format
runs-on: ubuntu-latest
steps:
Expand All @@ -20,6 +21,7 @@ jobs:
run: bun run format:check

lint:
if: github.event.pull_request.head.ref != 'changeset-release/main'
name: 🕵 Lint
runs-on: ubuntu-latest
steps:
Expand All @@ -33,6 +35,7 @@ jobs:
run: bun run lint

typecheck:
if: github.event.pull_request.head.ref != 'changeset-release/main'
name: ✅ Typecheck
runs-on: ubuntu-latest
steps:
Expand All @@ -46,6 +49,7 @@ jobs:
run: bun run typecheck

test:
if: github.event.pull_request.head.ref != 'changeset-release/main'
name: 🧪 Test
runs-on: ubuntu-latest
steps:
Expand All @@ -59,6 +63,7 @@ jobs:
run: bun run test

build:
if: github.event.pull_request.head.ref != 'changeset-release/main'
name: 🧰 Build
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit d7b7794

Please sign in to comment.