From 1a96e1a8936d08c3332f6e4aa185d9687a85daa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20F=C3=BCrtsch?= <49522775+Benjosh95@users.noreply.github.com> Date: Wed, 9 Jul 2025 14:32:07 +0200 Subject: [PATCH] add continue-on-error attribute to pipeline (#908) --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 52ea2b9d..2666ff2c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -66,6 +66,7 @@ jobs: if: github.event_name == 'pull_request' # Do not run when workflow is triggered by push to main branch runs-on: ubuntu-latest needs: main + continue-on-error: true # Add this line to prevent pipeline failures in forks permissions: contents: read actions: read # to download code coverage results from "main" job