From 26b63fe2adeadf044a0ad107ab18fad68c68f9f4 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Thu, 26 Feb 2026 08:54:41 -0800 Subject: [PATCH 1/2] fix(ci): fix exclude-patterns for cs fixer --- .github/workflows/lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index c3c7e51f6908..4ccbb63dfbce 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -27,7 +27,7 @@ jobs: uses: GoogleCloudPlatform/php-tools/.github/workflows/code-standards.yml@main with: config: GoogleCloudPlatform/php-tools/.php-cs-fixer.default.php@main - exclude-patterns: | + exclude-patterns: > [ "#.*/src/V[0-9]+#", "#.*/src/.*/V[0-9]+#", From 661551fdbdfadd470a58937b03dd475a73a6ad32 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Thu, 26 Feb 2026 09:08:59 -0800 Subject: [PATCH 2/2] try to fix jq parsing --- .github/workflows/lint.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4ccbb63dfbce..e5af4f88b473 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -27,7 +27,7 @@ jobs: uses: GoogleCloudPlatform/php-tools/.github/workflows/code-standards.yml@main with: config: GoogleCloudPlatform/php-tools/.php-cs-fixer.default.php@main - exclude-patterns: > + exclude-patterns: |- [ "#.*/src/V[0-9]+#", "#.*/src/.*/V[0-9]+#", @@ -47,7 +47,6 @@ jobs: "Translate/src/Connection", "Translate/src/TranslateClient.php" ] - staticanalysis: runs-on: ubuntu-latest name: PHPStan Static Analysis