Skip to content

Commit

Permalink
chore(system-tests-k8s): always run hourly (#2799)
Browse files Browse the repository at this point in the history
Run hourly system tests always (we want to run this after PR related
tests but we don't care if that CI job fails).
  • Loading branch information
marko-k0 authored Nov 25, 2024
1 parent 68d1088 commit 0067c23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/system-tests-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ jobs:
-v /cache:/cache -v /var/sysimage:/var/sysimage -v /var/tmp:/var/tmp
timeout-minutes: 150
needs: [system-tests-k8s]
if: ${{ github.event_name == 'schedule' }}
# always run after 'system-tests-k8s' job but on schedule event only
if: ${{ always() && github.event_name == 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 0067c23

Please sign in to comment.