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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches: [main]
workflow_dispatch:

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build-and-test:
name: Build and Test (macOS)
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ Before merging:
## CI/CD Scope for Now
- CI is required.
- We currently run minimal safety checks (build + `JChatTests` on GitHub Actions).
- CI cancels stale in-progress runs on the same branch when newer commits are pushed.
- Full CD/release automation is intentionally deferred.
1 change: 1 addition & 0 deletions JChat/Documentation/CHANGELOG_INTERNAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
- Replaced abrupt setup blocking with a first-run readiness checklist for API key and default model in `ContentView`.
- Added a canonical manual regression checklist for chat, setup guardrails, markdown, and settings persistence flows.
- Hardened chat usage accounting by clamping token/cost totals at zero during delete/regenerate paths.
- Optimized CI with workflow concurrency to auto-cancel stale in-progress runs per branch.