From 9440e5e38fcbd07bf8b0b0a704e2eb1ee3250650 Mon Sep 17 00:00:00 2001 From: Drikus Roor Date: Tue, 9 Jan 2024 11:50:37 +0100 Subject: [PATCH] fix: Remove unnecessary condition in CI workflow, which caused the frontend coverage job to run for every commit in a PR --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eeb779dd4..3d45a0a38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: name: Generate Frontend Coverage Badge needs: frontend-test runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || 1 == 1 # TODO: Remove last condition + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' steps: - uses: actions/checkout@v3 - name: Generate Frontend Coverage Report (XML) and Badge