From ccbaa15db571acce7d87af73af4d95832daae1c1 Mon Sep 17 00:00:00 2001 From: Sven Reichel Date: Fri, 8 Sep 2023 10:21:07 +0200 Subject: [PATCH] Fixed PHPCS github workflow for unexisting ruleset (#3500) With last change all errors are ignored. --- .github/workflows/phpcs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index b5cbc73d155..0163f02931b 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -40,4 +40,4 @@ jobs: - name: PHPCodeSniffer run: php vendor/bin/phpcs -s --report=full --standard=${{ matrix.rules.path }} - continue-on-error: ${{ matrix.rules.path != '.github/phpcs-ruleset.xml' }} + continue-on-error: ${{ matrix.rules.path != '.phpcs.xml.dist' }}