Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .changeset/fluffy-jeans-cheat.md

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ jobs:
fi
scripts/update-next-version.sh --replace "$NEW_VERSION"

# The changeset action does a hard reset, so we need to save
# the changes in a stash so they can be popped later in the `version` command
- name: Stash changes
run: git stash push -u -m __automated-changes

- name: Create Release Pull Request
id: changesets-action
uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"check": "cargo biome-cli-dev check",
"ci": "cargo biome-cli-dev ci",
"//": "when we create the release PR, we need to update the lock file with the new versions",
"version": "changeset version && pnpm i --lockfile-only"
"version": "changeset version && pnpm i --lockfile-only && (git stash list | grep -q '__automated-changes' && git -c advice.skippedCherryPicks=false stash pop || echo 'No stash to pop')"
},
"keywords": [],
"author": "Biome Developers and Contributors",
Expand Down