From caf93cd28cc81a0e252286d22a9c942a5cad2af1 Mon Sep 17 00:00:00 2001 From: eranc Date: Tue, 21 Apr 2026 12:04:05 +0300 Subject: [PATCH 1/2] Fix: CI path filter typo skipping all checks for power_ups integrations The path filters in 5 workflow files referenced `power_up/` instead of `power_ups/`, causing validate, build, lint, code check, and Windows CI jobs to silently skip when power_ups integrations were modified. This allowed PR #686 to pass CI without version bump or release notes validation. --- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/third_party_code_check.yml | 4 ++-- .github/workflows/validate.yml | 2 +- .github/workflows/windows_workflows.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5dd6943d9..b30b0a60c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,7 @@ jobs: - 'content/response_integrations/google/**' response_integrations_third_party: - 'content/response_integrations/third_party/**' - - 'content/response_integrations/power_up/**' + - 'content/response_integrations/power_ups/**' playbooks: - 'content/playbooks/**' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a86393088..f388ef0bf 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -46,7 +46,7 @@ jobs: - 'content/response_integrations/google/**' response_integrations_third_party: - 'content/response_integrations/third_party/**' - - 'content/response_integrations/power_up/**' + - 'content/response_integrations/power_ups/**' mp: - 'packages/mp/**' package_envcommon: diff --git a/.github/workflows/third_party_code_check.yml b/.github/workflows/third_party_code_check.yml index 61fd94f82..b3ad32b8a 100644 --- a/.github/workflows/third_party_code_check.yml +++ b/.github/workflows/third_party_code_check.yml @@ -7,14 +7,14 @@ on: - '**' paths: - 'content/response_integrations/third_party/**' - - 'content/response_integrations/power_up/**' + - 'content/response_integrations/power_ups/**' pull_request: branches: - '**' paths: - 'content/response_integrations/third_party/**' - - 'content/response_integrations/power_up/**' + - 'content/response_integrations/power_ups/**' jobs: mp_check: diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index f158c27a6..f90118065 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -46,7 +46,7 @@ jobs: - 'content/response_integrations/google/**' response_integrations_third_party: - 'content/response_integrations/third_party/**' - - 'content/response_integrations/power_up/**' + - 'content/response_integrations/power_ups/**' playbooks: - 'content/playbooks/**' diff --git a/.github/workflows/windows_workflows.yml b/.github/workflows/windows_workflows.yml index 91f868d37..094291164 100644 --- a/.github/workflows/windows_workflows.yml +++ b/.github/workflows/windows_workflows.yml @@ -43,7 +43,7 @@ jobs: - 'content/response_integrations/google/**' response_integrations_third_party: - 'content/response_integrations/third_party/**' - - 'content/response_integrations/power_up/**' + - 'content/response_integrations/power_ups/**' playbooks: - 'content/playbooks/**' From c82911f44095dff543f562bab075761eaa21ee9e Mon Sep 17 00:00:00 2001 From: eranc Date: Tue, 21 Apr 2026 12:13:01 +0300 Subject: [PATCH 2/2] Add .claude/ to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 1787e4614..a9891e9a7 100644 --- a/.gitignore +++ b/.gitignore @@ -234,6 +234,9 @@ cython_debug/ .vscode/ +### Claude Code +.claude/ + ### mp .integrations_cache/ .mp_cache/