Conversation
Bump VERSION to 1.2.44. Update README with new update and branch commands. Change version-bump workflow to trigger on 'dev' branch instead of 'main'.
There was a problem hiding this comment.
Pull request overview
Updates project documentation and CI version bump behavior, along with a patch-level version increment.
Changes:
- Bump
VERSIONfrom1.2.42to1.2.45 - Reorganize README CLI command listing to include an “Updates & Branches” section
- Change the version bump GitHub Actions workflow trigger branch from
maintodev
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
VERSION |
Updates the project version to 1.2.45. |
README.md |
Documents update/branch-related CLI commands more clearly under a dedicated section. |
.github/workflows/version-bump.yml |
Alters CI trigger branch for the version bump workflow (currently dev only). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| push: | ||
| branches: | ||
| - main | ||
| - dev |
There was a problem hiding this comment.
The version bump workflow now only triggers on pushes to dev. The rest of the repo treats main as the stable/default branch (e.g., serverkit update logic and install.sh both reference main), so this change will stop automatic VERSION bumps on main and may break the release/versioning flow. If the intent is to bump versions for releases, include main in on.push.branches (or trigger on both main and dev and gate with an if/path filter).
No description provided.