-
-
Notifications
You must be signed in to change notification settings - Fork 238
Add VERSION display to website footer #833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: ckenst <[email protected]>
Co-authored-by: ckenst <[email protected]>
Co-authored-by: ckenst <[email protected]>
Co-authored-by: ckenst <[email protected]>
Co-authored-by: ckenst <[email protected]>
Co-authored-by: ckenst <[email protected]>
|
@copilot we don't need 2 files called VERSION, nor a sync script if our future increment script can update _includes/VERSION.txt. Please remove both. |
Co-authored-by: ckenst <[email protected]>
Done! Removed the root VERSION file and sync workflow. The single |
Description
Implements dynamic VERSION display in footer per roadmap Phase 1. The VERSION file content now appears in the scrollable super footer as
rev.1500.Changes
_includes/footer.html: Added{% include VERSION.txt %}in super footer withrev.prefix and.suffix_includes/VERSION.txt: Single VERSION file containing the version number (content: "1500")Implementation Details
Jekyll's
includerequires files in_includes/. The_includes/VERSION.txtfile serves as the single source of truth for the version number. Future automated increment scripts will update this file directly, and the changes will automatically propagate to the live site.Checklist
Additional context
This implementation uses a single VERSION file located in
_includes/VERSION.txtto avoid duplication. The future automated increment workflow (Phase 1, next step in the roadmap) will update this file directly on deployment.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.