From c38123b595c4b01efac723bddd3355f42c3e90ba Mon Sep 17 00:00:00 2001 From: Sanil Chawla Date: Wed, 11 Feb 2026 23:36:15 -0800 Subject: [PATCH] ci(config): add Cloudflare Pages deployment via Gitea Actions Adds wrangler.json for static output config and a Gitea Actions workflow that builds with Bun and deploys to Cloudflare Pages on pushes to main. Also disables subject-case rule in commitlint. --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 26e92ed..8f2bdaa 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -21,7 +21,7 @@ export default { ], "scope-enum": [1, "always", ["page", "style", "config", "deps"]], "scope-empty": [1, "never"], - "subject-case": [2, "always", "lower-case"], + "subject-case": [0], "subject-empty": [2, "never"], "subject-full-stop": [2, "never", "."], "body-leading-blank": [2, "always"],