Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vtsvetkov-splunk committed Jun 4, 2024
1 parent c1dda9f commit 99d416c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,9 @@ jobs:
all-checks:
if: ${{ !cancelled() }}
needs:
- test-ui
- test-unit
- test-smoke
- test-ui
- build-test-addon-openapi-client
- storybook-screenshots
runs-on: ubuntu-latest
Expand All @@ -311,7 +312,7 @@ jobs:
id: check
shell: bash
run: |
ALL_JOBS_PASSED=$(echo "$NEEDS" | jq "all(.[]; .result == \"success\")")
ALL_JOBS_PASSED=$(echo "$NEEDS" | jq 'all(.[]; .result == "success" or (.result == "skipped" and .steps | all(.[]; .conclusion == "success")))')
if [[ "$ALL_JOBS_PASSED" == "true" ]]
then
echo "all-checks=true" >> "$GITHUB_OUTPUT"
Expand All @@ -337,7 +338,7 @@ jobs:
- pre-commit
- all-checks
runs-on: ubuntu-latest
if: "! github.event.pull_request.head.repo.fork "
if: github.event.pull_request.head.repo.fork == false
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 99d416c

Please sign in to comment.