From 04fba9c4407ee087c061aa2e7ea25d2f6a2be181 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Mon, 16 Feb 2026 05:29:31 -0500 Subject: [PATCH] ignore doc changes for Codex review action * skip Codex review when the changes are documentation-only * sync all workflows to the same paths-ignore spec --- .github/workflows/ci.yml | 4 +--- .github/workflows/codex-review.yml | 8 ++++++++ .github/workflows/lint.yml | 4 +--- .github/workflows/typecheck.yml | 4 +--- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ebeb4ce..0fd0d930 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,9 @@ on: pull_request: paths-ignore: - '**.md' + - '**.rst' - 'LICENSE.txt' - - 'AUTHORS.rst' - - 'SPONSORS.rst' - 'doc/**/*.txt' - - 'doc/**/*.rst' - '**/AUTHORS' - '**/SPONSORS' - '**/TIPS' diff --git a/.github/workflows/codex-review.yml b/.github/workflows/codex-review.yml index f0d7be5c..998b7471 100644 --- a/.github/workflows/codex-review.yml +++ b/.github/workflows/codex-review.yml @@ -3,6 +3,14 @@ name: Codex Review on: pull_request_target: types: [opened, labeled, reopened, ready_for_review] + paths-ignore: + - '**.md' + - '**.rst' + - 'LICENSE.txt' + - 'doc/**/*.txt' + - '**/AUTHORS' + - '**/SPONSORS' + - '**/TIPS' jobs: codex-review: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0c3adda9..1936b7ce 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,11 +4,9 @@ on: pull_request: paths-ignore: - '**.md' + - '**.rst' - 'LICENSE.txt' - - 'AUTHORS.rst' - - 'SPONSORS.rst' - 'doc/**/*.txt' - - 'doc/**/*.rst' - '**/AUTHORS' - '**/SPONSORS' - '**/TIPS' diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index de5dcb57..99f6b523 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -4,11 +4,9 @@ on: pull_request: paths-ignore: - '**.md' + - '**.rst' - 'LICENSE.txt' - - 'AUTHORS.rst' - - 'SPONSORS.rst' - 'doc/**/*.txt' - - 'doc/**/*.rst' - '**/AUTHORS' - '**/SPONSORS' - '**/TIPS'