Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm run build

- name: Create Release PR or Publish
id: changesets
uses: changesets/action@v1
Expand All @@ -55,3 +52,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Enable auto-merge for Release PR
if: steps.changesets.outputs.pullRequestNumber
run: gh pr merge ${{ steps.changesets.outputs.pullRequestNumber }} --auto --squash
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}