From 4d94b033e73c31d9a1d45cc6c1dd03e093c0f262 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 7348c9355..bdd50d191 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