We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a262c7e commit 8041092Copy full SHA for 8041092
1 file changed
.github/actions/ci/action.yml
@@ -22,11 +22,11 @@ runs:
22
# Because the package.json for integration test changes.
23
24
- name: Install
25
- if: startsWith(github.ref, 'refs/heads/changeset-')
+ if: github.ref == 'changeset-release/master'
26
run: pnpm install --no-frozen-lockfile
27
shell: bash
28
29
30
- if: ${{ !startsWith(github.ref, 'refs/heads/changeset-') }}
+ if: github.ref != 'changeset-release/master'
31
run: pnpm install
32
0 commit comments