From 8c06fe47208e3d34458c705ce64cdf0204b48d56 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Thu, 3 Sep 2026 12:04:14 +0900 Subject: [PATCH] fix(ci): skip docs-only changes for ci and CodeQL workflows Org-wide audit found these workflows lack paths-ignore, triggering full CI on every docs-only push/PR and adding to Actions queue congestion. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/ci.yml | 6 ++++++ .github/workflows/codeql.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 655ff06..796d04f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,13 @@ name: ci on: push: branches: [main] + paths-ignore: + - "docs/**" + - "*.md" pull_request: + paths-ignore: + - "docs/**" + - "*.md" # Cancel superseded evidence for the same pull request or branch. This keeps the # runner queue bounded during review-fix loops while preserving the newest head. diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2a4dcef..9b3b713 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -3,7 +3,13 @@ name: CodeQL on: push: branches: [main] + paths-ignore: + - "docs/**" + - "*.md" pull_request: + paths-ignore: + - "docs/**" + - "*.md" # Code scanning evidence is head-specific; cancel scans made obsolete by a # newer commit on the same pull request or branch.