From 0d61ed1c0723cab15a68b43713d38056e1c884a6 Mon Sep 17 00:00:00 2001 From: afornerot Date: Sat, 9 Mar 2024 13:13:50 +0100 Subject: [PATCH] add interceptors & del body.secret param & comment dif php-css-fixer --- .../base/tekton/event/pipeline-symfonyapp-listener.yaml | 6 ++++++ .../base/tekton/task/symfonyapp/task/php-cs-fixer.yaml | 6 +++--- .../base/tekton/trigger/pipeline-symfonyapp-binding.yaml | 4 +--- .../base/tekton/trigger/pipeline-symfonyapp-template.yaml | 1 - 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/kustomization/base/tekton/event/pipeline-symfonyapp-listener.yaml b/kustomization/base/tekton/event/pipeline-symfonyapp-listener.yaml index db2bffd..f6c9fd9 100644 --- a/kustomization/base/tekton/event/pipeline-symfonyapp-listener.yaml +++ b/kustomization/base/tekton/event/pipeline-symfonyapp-listener.yaml @@ -6,6 +6,12 @@ spec: serviceAccountName: tekton-robot triggers: - name: pipeline-symfonyapp-trigger + interceptors: + - ref: + name: "cel" + params: + - name: "filter" + value: "header.match('X-Gitea-Signature', '2563371aaeb3e352c3c4c4a35d5591a31fd18686a90e1f3679d97177a728c356') && requestURL.parseURL().query['pipeline'] == 'symfonyapp'" bindings: - ref: pipeline-symfonyapp-binding template: diff --git a/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml b/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml index be5ba69..3c76ad2 100644 --- a/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml +++ b/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml @@ -21,8 +21,8 @@ spec: set -ex 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" " ") + #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 php-cs-fixer fix --dry-run --config=$(workspaces.config.path)/php-cs-fixer.dist.php ${EXTRA_ARGS} diff --git a/kustomization/base/tekton/trigger/pipeline-symfonyapp-binding.yaml b/kustomization/base/tekton/trigger/pipeline-symfonyapp-binding.yaml index 3f7dcd6..854b1b7 100644 --- a/kustomization/base/tekton/trigger/pipeline-symfonyapp-binding.yaml +++ b/kustomization/base/tekton/trigger/pipeline-symfonyapp-binding.yaml @@ -4,10 +4,8 @@ metadata: name: pipeline-symfonyapp-binding spec: params: - - name: secret - value: $(body.secret) - name: ref - value: $(body.secret) + value: $(body.ref) - name: before value: $(body.before) - name: after diff --git a/kustomization/base/tekton/trigger/pipeline-symfonyapp-template.yaml b/kustomization/base/tekton/trigger/pipeline-symfonyapp-template.yaml index 4b08e9d..4fd2e61 100644 --- a/kustomization/base/tekton/trigger/pipeline-symfonyapp-template.yaml +++ b/kustomization/base/tekton/trigger/pipeline-symfonyapp-template.yaml @@ -4,7 +4,6 @@ metadata: name: pipeline-symfonyapp-template spec: params: - - name: secret - name: ref - name: before - name: after