Frontmatter
| id | 8581 |
| title | Fix outdated ticket index in release workflow |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Jan 12, 2026, 11:13 AM |
| updatedAt | Jan 12, 2026, 11:20 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8581 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 12, 2026, 11:20 AM |
Fix outdated ticket index in release workflow
tobiu assigned to @tobiu on Jan 12, 2026, 11:20 AM

tobiu
Jan 12, 2026, 11:20 AM
Input from Gemini 3 Pro:
✦ I have implemented the fix by ensuring
createTicketIndex.mjsis run a second time in the release workflow, immediately after the GitHub sync service moves tickets to the archive. This ensurestickets.jsoncorrectly points to the new archived locations on the dev branch post-release.I also manually regenerated the
tickets.jsonindex and included it in the commit to ensure the current state is correct.
tobiu closed this issue on Jan 12, 2026, 11:20 AM
Problem
In the release workflow (
publishRelease.mjs),createTicketIndex.mjsis executed during the "Prepare" phase (Step 2). However, theGH_SyncService.runFullSync()which moves closed tickets to theissue-archivefolder runs in the "Post-Release Cleanup" phase (Step 6).This results in
tickets.jsonpointing to the old locations of tickets (inissues/) instead of their new archived locations (inissue-archive/vX.Y.Z/), causing broken links in the Portal application.Solution
Regenerate the ticket index (
createTicketIndex.mjs) inpublishRelease.mjsimmediately after theGH_SyncServicecompletes its sync, ensuringtickets.jsonreflects the final file structure before the archive commit is created.