Skip to content

Commit

Permalink
Merge pull request K0rdent#344 from Mirantis/skip
Browse files Browse the repository at this point in the history
Skip cleanup job when e2e tests are skipped
  • Loading branch information
Kshatrix authored Sep 18, 2024
2 parents 7f04100 + d903613 commit d7875d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
name: Cleanup
needs: e2etest
runs-on: ubuntu-latest
if: ${{ always() }}
if: ${{ always() && !contains(needs.*.result, 'skipped') }}
timeout-minutes: 15
steps:
- name: Checkout repository
Expand Down

0 comments on commit d7875d3

Please sign in to comment.