File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1212 - name : Install packages
1313 shell : bash
1414 run : bun install
15+
16+ - name : Check Branch
17+ shell : bash
18+ run : |
19+ if [[ "${{ github.event.pull_request.head.ref }}" == "changeset-release/main" ]]; then
20+ echo "Bypassing checks for changeset-release/main"
21+ exit 0
22+ fi
Original file line number Diff line number Diff line change 77
88jobs :
99 format :
10- if : github.event.pull_request.head.ref != 'changeset-release/main'
1110 name : 💅 Format
1211 runs-on : ubuntu-latest
1312 steps :
2120 run : bun run format:check
2221
2322 lint :
24- if : github.event.pull_request.head.ref != 'changeset-release/main'
2523 name : 🕵 Lint
2624 runs-on : ubuntu-latest
2725 steps :
3533 run : bun run lint
3634
3735 typecheck :
38- if : github.event.pull_request.head.ref != 'changeset-release/main'
3936 name : ✅ Typecheck
4037 runs-on : ubuntu-latest
4138 steps :
4946 run : bun run typecheck
5047
5148 test :
52- if : github.event.pull_request.head.ref != 'changeset-release/main'
5349 name : 🧪 Test
5450 runs-on : ubuntu-latest
5551 steps :
6359 run : bun run test
6460
6561 build :
66- if : github.event.pull_request.head.ref != 'changeset-release/main'
6762 name : 🧰 Build
6863 runs-on : ubuntu-latest
6964 steps :
You can’t perform that action at this time.
0 commit comments