Skip to content

Commit 043d211

Browse files
chore: use correct ref for the integration ref (#3732)
* chore use correct ref * changeset * ref? * head_ref? * use ignore workspace
1 parent fc18871 commit 043d211

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.changeset/big-lions-draw.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
---
3+
4+
chore: use correct ref for the integration ref

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Wait for release to succeed
8989
uses: lewagon/wait-on-check-action@v1.3.4
9090
with:
91-
ref: ${{ github.event.pull_request.head.ref }}
91+
ref: ${{ github.head_ref }}
9292
check-name: "publish-to-github-packages"
9393
repo-token: ${{ secrets.GITHUB_TOKEN }}
9494
wait-interval: 30

packages/create-fuels/test/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const PUBLISHED_FUEL_PACKAGE_NAME = process.env.PUBLISHED_FUEL_PACKAGE_NAME ?? '
1818
const PUBLISHED_NPM_TAG = process.env.PUBLISHED_NPM_TAG ?? 'next';
1919

2020
const packageManagerCreateCommands: [PackageManager, string][] = [
21-
['pnpm', `pnpm create ${PUBLISHED_FUEL_PACKAGE_NAME}@${PUBLISHED_NPM_TAG}`],
21+
['pnpm', `pnpm --ignore-workspace create ${PUBLISHED_FUEL_PACKAGE_NAME}@${PUBLISHED_NPM_TAG}`],
2222
['bun', `bun create ${PUBLISHED_FUEL_PACKAGE_NAME}@${PUBLISHED_NPM_TAG}`],
2323
['npm', `npm create ${PUBLISHED_FUEL_PACKAGE_NAME}@${PUBLISHED_NPM_TAG}`],
2424
];

0 commit comments

Comments
 (0)