From aadcbbfcc647edcf9f99e9a9df0567f40f78210b Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 8 May 2026 16:15:54 +0900 Subject: [PATCH] chore(workflows): trigger web CI + deploy on docs/ changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now that docs/ is the single source of truth that the marketing site renders at build time, edits to those files must run web CI and trigger the Cloudflare deploy. Add `docs/**` to the paths filter in both web-ci.yml and web-deploy.yml. A markdown-only fix in docs/ is now sufficient to redeploy oh-my-openagent.com — no companion web/ change needed. --- .github/workflows/web-ci.yml | 2 ++ .github/workflows/web-deploy.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/web-ci.yml b/.github/workflows/web-ci.yml index a9974746a..f3c0c9d3e 100644 --- a/.github/workflows/web-ci.yml +++ b/.github/workflows/web-ci.yml @@ -5,11 +5,13 @@ on: branches: [master, dev] paths: - "web/**" + - "docs/**" - ".github/workflows/web-ci.yml" pull_request: branches: [master, dev] paths: - "web/**" + - "docs/**" - ".github/workflows/web-ci.yml" concurrency: diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index a8a10ba15..9d265700b 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -11,6 +11,7 @@ on: branches: [master, dev] paths: - "web/**" + - "docs/**" - ".github/workflows/web-deploy.yml" concurrency: