From e15a3871eb51e7756c90f93b1a8c4b369fa90095 Mon Sep 17 00:00:00 2001 From: Fran Mulero Date: Tue, 9 Sep 2025 10:49:01 +0200 Subject: [PATCH] fix(ci-pipeline): Add condition to license check (#86100) Signed-off-by: Fran Mulero --- .github/workflows/ci-pipeline.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 8bda27e5fbae..eb2c66476ace 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -60,6 +60,9 @@ jobs: contents: read pull-requests: write needs: get-containers + if: | + needs.get-containers.outputs.result == 'ok' && + github.event.pull_request.user.login != 'bitnami-bot' steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 name: Checkout Repository