Skip to content

Commit d79d013

Browse files
committed
fix: expression
1 parent b72b3d6 commit d79d013

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/quality.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
lockfile:
12-
if: ${{ !startsWith(github.head_ref, 'refs/heads/changeset-release/') }}
12+
if: ${{ !startsWith(github.ref, 'refs/heads/changeset-release/') }}
1313
name: Lockfile
1414
runs-on: ubuntu-latest
1515

@@ -26,7 +26,7 @@ jobs:
2626
run: pnpm install --frozen-lockfile
2727

2828
linting:
29-
if: ${{ !startsWith(github.head_ref, 'refs/heads/changeset-release/') }}
29+
if: ${{ !startsWith(github.ref, 'refs/heads/changeset-release/') }}
3030
name: Linting
3131
runs-on: ubuntu-latest
3232

@@ -41,7 +41,7 @@ jobs:
4141
run: pnpm lint
4242

4343
type-checking:
44-
if: ${{ !startsWith(github.head_ref, 'refs/heads/changeset-release/') }}
44+
if: ${{ !startsWith(github.ref, 'refs/heads/changeset-release/') }}
4545
name: Type checking
4646
runs-on: ubuntu-latest
4747

@@ -59,7 +59,7 @@ jobs:
5959
run: pnpm typecheck:flow
6060

6161
testing:
62-
if: ${{ !startsWith(github.head_ref, 'refs/heads/changeset-release/') }}
62+
if: ${{ !startsWith(github.ref, 'refs/heads/changeset-release/') }}
6363
name: Testing
6464
needs: [lockfile, linting, type-checking]
6565
runs-on: ubuntu-latest
@@ -85,7 +85,7 @@ jobs:
8585
run: pnpm test:integration
8686

8787
regression-testing:
88-
if: ${{ !startsWith(github.head_ref, 'refs/heads/changeset-release/') }}
88+
if: ${{ !startsWith(github.ref, 'refs/heads/changeset-release/') }}
8989
name: Regression Testing
9090
needs: [testing]
9191
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)