diff options
| author | Aiden Cline <[email protected]> | 2025-12-31 12:05:35 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-12-31 12:05:35 -0600 |
| commit | dc3e731afe8685290834ce1227c54cd224820b43 (patch) | |
| tree | b3835948502505689991d9daadbfb3b320f47168 /script/changelog.ts | |
| parent | de50e7f9b95c471332f145921c289e39980da479 (diff) | |
| download | opencode-dc3e731afe8685290834ce1227c54cd224820b43.tar.gz opencode-dc3e731afe8685290834ce1227c54cd224820b43.zip | |
ci: tweak changelog ensure all cmd/ things fall under tui section
Diffstat (limited to 'script/changelog.ts')
| -rwxr-xr-x | script/changelog.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/changelog.ts b/script/changelog.ts index 9e3b3c692..18fc60993 100755 --- a/script/changelog.ts +++ b/script/changelog.ts @@ -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") |
