Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Commit 210a8d3

Browse files
committed
fix: address PR review feedback on no-auth mode and unread-count
- Add optional chain on history.messages before .at() call - Check provider-specific chat history files (claude, codex) not just default - Move no-auth exchange block after loopback address check - Replace static "no-auth" token fallback with fail-fast sessionStore check - Extract version-bump-check into its own workflow file
1 parent cf51a38 commit 210a8d3

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Desktop Version Bump Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
paths:
7+
- "apps/desktop/**"
8+
9+
jobs:
10+
version-bump-check:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 2
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Check desktop version bump
20+
run: |
21+
BASE="${{ github.event.pull_request.base.sha }}"
22+
23+
OLD_VERSION=$(git show "$BASE":apps/desktop/package.json | jq -r .version)
24+
NEW_VERSION=$(jq -r .version apps/desktop/package.json)
25+
26+
if [ "$OLD_VERSION" = "$NEW_VERSION" ]; then
27+
echo "::error::apps/desktop/ was modified but version in apps/desktop/package.json was not bumped (still $OLD_VERSION). Please bump the version."
28+
exit 1
29+
fi
30+
31+
echo "Version bumped: $OLD_VERSION -> $NEW_VERSION"

0 commit comments

Comments
 (0)