ci: tweak changelog ensure all cmd/ things fall under tui section

This commit is contained in:
Aiden Cline
2025-12-31 12:05:35 -06:00
parent de50e7f9b9
commit dc3e731afe

View File

@@ -64,7 +64,7 @@ export async function getCommits(from: string, to: string): Promise<Commit[]> {
const areas = new Set<string>()
for (const file of files.split("\n").filter(Boolean)) {
if (file.startsWith("packages/opencode/src/cli/cmd/tui/")) areas.add("tui")
if (file.startsWith("packages/opencode/src/cli/cmd/")) areas.add("tui")
else if (file.startsWith("packages/opencode/")) areas.add("core")
else if (file.startsWith("packages/desktop/src-tauri/")) areas.add("tauri")
else if (file.startsWith("packages/desktop/")) areas.add("app")