36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: phpcsfixer
|
|
spec:
|
|
description: PHP-CS-Fixer on modified code
|
|
workspaces:
|
|
- name: source
|
|
- name: config
|
|
params:
|
|
- name: destination
|
|
steps:
|
|
- name: exec
|
|
image: ghcr.io/php-cs-fixer/php-cs-fixer:3-php8.3
|
|
command:
|
|
- /bin/sh
|
|
args:
|
|
- '-c'
|
|
- |
|
|
#set -e
|
|
apk add git
|
|
cd $(workspaces.source.path)
|
|
git config --global --add safe.directory /workspace/source
|
|
git fetch origin $(params.destination)
|
|
CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB origin/$(params.destination) -- | grep -F ".php" | tr "\n" " ")
|
|
if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php-cs-fixer(\\.dist)\\.php?|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection -- %s' "${CHANGED_FILES}"); else EXTRA_ARGS=''; fi
|
|
|
|
echo ""
|
|
echo "== RUN PHP-CS-FIXER ======================================"
|
|
|
|
php-cs-fixer fix --dry-run --config=$(workspaces.config.path)/php-cs-fixer.dist.php ${EXTRA_ARGS} > temp_phpcsfixer.txt 2>&1
|
|
cat temp_phpcsfixer.txt
|
|
|
|
echo ""
|
|
echo ""
|