diff --git a/.changeset/config.json b/.changeset/config.json index b17438e3a..b3684d39d 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -5,7 +5,7 @@ "fixed": [], "linked": [], "access": "public", - "baseBranch": "main", + "baseBranch": "origin/main", "updateInternalDependencies": "patch", "ignore": [] } diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4629cfe01..d8bf1db84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,8 @@ jobs: - name: Check out code uses: actions/checkout@v4 with: - fetch-depth: 2 + # https://github.com/changesets/changesets/issues/1055 + fetch-depth: 0 - name: Setup pnpm uses: pnpm/action-setup@v4 @@ -35,6 +36,10 @@ jobs: node-version: 20.18.0 cache: 'pnpm' + - name: Changeset + # https://github.com/changesets/changesets/issues/1048 + run: pnpm dlx @changesets/cli status --since origin/main + - name: Install dependencies run: pnpm install --frozen-lockfile