Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# SPDX-License-Identifier: Apache-2.0

name: "CI"
on: push
on:
push:
schedule:
- cron: "15 2 * * *" # Nightly-Build at 2:15 AM UTC

env:
# ---- Language Versions ----
Expand Down Expand Up @@ -892,7 +895,7 @@ jobs:

- name: "ZAP Extended Integration Tests"
# disable zap extended test temporarily as they slow down the pipeline too much
if: ${{ false }}
if: ${{ github.event_name == 'schedule' }}
run: |
kubectl -n integration-tests delete scans --all
helm -n integration-tests install zap-advanced ./scanners/zap-advanced/ \
Expand Down