summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
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 }}