feat: add tags workflow

This commit is contained in:
2026-07-16 03:34:23 +05:00
parent 7c0584707a
commit 6eedfb2bc5
29 changed files with 1153 additions and 22 deletions
@@ -0,0 +1,15 @@
import * as yaml from "js-yaml";
import type { ProjectConfig } from "@/model/projectConfig";
export function serializeProjectConfig(config: ProjectConfig): string {
return yaml
.dump(
{ tags: config.tags },
{
lineWidth: -1,
forceQuotes: false,
},
)
.trimEnd()
.concat("\n");
}