/** * Forgejo Actions YAML serializer. * * A thin dialect of the github serializer: it applies the Forgejo dialect * (see ./dialect) to the entity graph, then delegates emission to the github * serializer, which already produces GitHub-Actions-compatible YAML — exactly * what Forgejo / Codeberg / Gitea runners execute. * * The serializer's `name` is "github" on purpose: github-lexicon entities are * tagged `lexicon: "github"`, and the build pipeline partitions and looks up * serializers by that tag. A forgejo project loads only this serializer, so it * claims that partition. The distinct `rulePrefix` ("WFJ") keeps Forgejo lint * diagnostics namespaced apart from github's "GHA". */ import type { Serializer } from "@intentius/chant/serializer"; /** * Forgejo Actions YAML serializer implementation. */ export declare const forgejoSerializer: Serializer; //# sourceMappingURL=serializer.d.ts.map