From 3e00fcd1ca28be2bbac4972c2ec5ac6cd1b51782 Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 13 May 2021 22:31:37 +0200 Subject: [PATCH] Optimize PHP-CS check --- .drone.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.drone.yml b/.drone.yml index 4f1fbae36a..257fe23d7d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -47,22 +47,17 @@ kind: pipeline type: docker name: php-cs check +trigger: + event: + - pull_request + steps: - name: Install dependencies image: composer commands: - ./bin/composer.phar run cs:install - when: - event: - include: - - pull_request - - name: Run coding standards check image: friendicaci/php-cs commands: - export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)" - /check-php-cs.sh - when: - event: - include: - - pull_request