From ababd99b5701b1d47bc69e629bdcf1bc9eeec69e Mon Sep 17 00:00:00 2001 From: Corey Newton Date: Wed, 21 Jan 2026 20:04:16 -0800 Subject: [PATCH] docs(ci): Exclude docs/wiki/** from some actions There is no reason to run certain checks on simple documentation updates. These Actions showed up during the initial v0.1 PR and added noise to the PR process. --- .github/workflows/claude-code-review.yml | 2 ++ .github/workflows/codeql-analysis.yml | 3 +++ .github/workflows/dependency-review.yml | 5 ++++- .github/workflows/lighthouse-ci.yml | 3 +++ .github/workflows/lint-and-test-pr.yml | 5 ++++- 5 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 882acec51..740e60804 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -8,6 +8,8 @@ name: Claude Code Review on: pull_request_target: types: [opened, synchronize, ready_for_review, reopened] + paths-ignore: + - 'docs/wiki/**' # Optional: Only run on specific file changes # paths: # - "src/**/*.ts" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4ee33b0ed..eda81825c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -11,6 +11,9 @@ on: pull_request: # The branches below must be a subset of the branches above branches: [master, release/*] + paths-ignore: + - 'docs/wiki/**' + schedule: - cron: '0 3 * * 6' diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 710dddb20..f77d85bbb 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -5,7 +5,10 @@ # Source repository: https://github.com/actions/dependency-review-action # Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement name: 'Dependency Review' -on: [pull_request] +on: + pull_request: + paths-ignore: + - 'docs/wiki/**' permissions: contents: read diff --git a/.github/workflows/lighthouse-ci.yml b/.github/workflows/lighthouse-ci.yml index 4021ac22f..88186222c 100644 --- a/.github/workflows/lighthouse-ci.yml +++ b/.github/workflows/lighthouse-ci.yml @@ -4,6 +4,9 @@ on: branches: - master - main + paths-ignore: + - 'docs/wiki/**' + workflow_dispatch: inputs: {} release: diff --git a/.github/workflows/lint-and-test-pr.yml b/.github/workflows/lint-and-test-pr.yml index 174942bde..3b1e4e9de 100644 --- a/.github/workflows/lint-and-test-pr.yml +++ b/.github/workflows/lint-and-test-pr.yml @@ -1,6 +1,9 @@ name: 'Lint & Test PRs' -on: [pull_request] +on: + pull_request: + paths-ignore: + - 'docs/wiki/**' permissions: pull-requests: write