Skip to content

Commit a268500

Browse files
committed
bypass status check for changeset-release/main branch
1 parent 664a23b commit a268500

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
format:
10+
if: github.event.pull_request.head.ref != 'changeset-release/main'
1011
name: 💅 Format
1112
runs-on: ubuntu-latest
1213
steps:
@@ -20,6 +21,7 @@ jobs:
2021
run: bun run format:check
2122

2223
lint:
24+
if: github.event.pull_request.head.ref != 'changeset-release/main'
2325
name: 🕵 Lint
2426
runs-on: ubuntu-latest
2527
steps:
@@ -33,6 +35,7 @@ jobs:
3335
run: bun run lint
3436

3537
typecheck:
38+
if: github.event.pull_request.head.ref != 'changeset-release/main'
3639
name: ✅ Typecheck
3740
runs-on: ubuntu-latest
3841
steps:
@@ -46,6 +49,7 @@ jobs:
4649
run: bun run typecheck
4750

4851
test:
52+
if: github.event.pull_request.head.ref != 'changeset-release/main'
4953
name: 🧪 Test
5054
runs-on: ubuntu-latest
5155
steps:
@@ -59,6 +63,7 @@ jobs:
5963
run: bun run test
6064

6165
build:
66+
if: github.event.pull_request.head.ref != 'changeset-release/main'
6267
name: 🧰 Build
6368
runs-on: ubuntu-latest
6469
steps:

0 commit comments

Comments
 (0)