feat: GitHub wiki sync, CI performance fixes, and release automation#36
Merged
feat: GitHub wiki sync, CI performance fixes, and release automation#36
Conversation
- Add current/docs/Home.md as the GitHub wiki landing page - Add current/docs/_Sidebar.md for persistent wiki sidebar navigation - Add .github/workflows/sync-wiki.yml to auto-sync current/docs/ to the GitHub wiki on every push to main (path-filtered) and via workflow_dispatch - Update README.md Documentation section with wiki link as first entry current/docs/ is the single source of truth; the wiki is a publishing target. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…add release test.yml: - Trigger on all branch pushes (was main-only); covers PRs to main - Scope to :current:test (was ./gradlew test across all modules) docker-publish.yml: - Trigger on push to main only (was all branches + PRs) - Remove redundant test job — test.yml handles all testing - Remove branch Docker builds — feature branch images were never used - Consolidate dual main/branch metadata steps into single step - Add automatic GitHub Release creation after Docker push (--generate-notes) - Trivy scan unchanged (main only, non-blocking) Expected PR wait time: ~10 min (tests only) vs ~35 min previously. Releases now created automatically on every main merge. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…elease trigger docker-publish.yml: - Change trigger from push:main to workflow_dispatch - Releases now fire on demand: gh workflow run docker-publish.yml --ref main - Decouples PR merge cadence from release cadence prepare-release skill (replaces bump-version): - Reads commits since last git tag (not since branch divergence) - Creates release/vX.Y.Z branch for the version bump commit - Guides through version bump, changelog, PR creation - Prints gh workflow run trigger command at the end - Supports batching: merge N PRs, release once Removed: - .claude/skills/bump-version.md - .claude/hooks/check-version-bump.sh (no longer meaningful — feature PRs no longer require a version bump before merge) - PreToolUse hook registration from .claude/settings.json Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
current/docs/is now the single source of truth; auto-publishes to the wiki onworkflow_dispatchor docs changescurrent/docs/Home.md(wiki landing page) andcurrent/docs/_Sidebar.md(persistent wiki navigation)test.ymlnow covers all branches and scopes to:current:testonly--generate-notes)docker-publish.ymltoworkflow_dispatch— decouples PR merge cadence from release cadence/bump-versionskill with/prepare-release— reads commits since last tag, supports batching multiple PRs into one release, createsrelease/vX.Y.Zbranchcheck-version-bump.shhook — no longer meaningful with the new release flowCI Workflow Changes
test.yml:current:testonlydocker-publish.ymlworkflow_dispatchonlyworkflow_dispatch+ path-triggered oncurrent/docs/**New Release Flow
🤖 Generated with Claude Code