From ca97eeefe2790082892eab9c9ae798a05e53d652 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 16 Mar 2024 09:53:39 +0100 Subject: Change workflow to disable some jobs on Pull Request --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9116e0fd..c01fbac5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,13 +15,15 @@ jobs: uses: ./.github/workflows/test.yml needs: [quality] webui: - if: ${{ always() }} + if: github.event_name != 'pull_request' uses: ./.github/workflows/webui.yml needs: [quality, test] cyber: + if: github.event_name != 'pull_request' uses: ./.github/workflows/cyber.yml needs: [quality, test, webui] build: + if: github.event_name != 'pull_request' uses: ./.github/workflows/build.yml secrets: TEST_PYPI_API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }} -- cgit v1.2.3