Status check should fail if "conditional" step fails (#22948)
Closes #22947
This commit is contained in:
parent
18bb6f7df8
commit
8286b8b31f
6 changed files with 6 additions and 0 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -705,6 +705,7 @@ jobs:
|
||||||
name: Status Check - Keycloak CI
|
name: Status Check - Keycloak CI
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
|
- conditional
|
||||||
- unit-tests
|
- unit-tests
|
||||||
- base-integration-tests
|
- base-integration-tests
|
||||||
- quarkus-unit-tests
|
- quarkus-unit-tests
|
||||||
|
|
1
.github/workflows/codeql-analysis.yml
vendored
1
.github/workflows/codeql-analysis.yml
vendored
|
@ -90,6 +90,7 @@ jobs:
|
||||||
name: Status Check - CodeQL
|
name: Status Check - CodeQL
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
|
- conditional
|
||||||
- java
|
- java
|
||||||
- themes
|
- themes
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
1
.github/workflows/documentation.yml
vendored
1
.github/workflows/documentation.yml
vendored
|
@ -102,6 +102,7 @@ jobs:
|
||||||
name: Status Check - Keycloak Documentation
|
name: Status Check - Keycloak Documentation
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
|
- conditional
|
||||||
- build
|
- build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
1
.github/workflows/guides.yml
vendored
1
.github/workflows/guides.yml
vendored
|
@ -49,6 +49,7 @@ jobs:
|
||||||
name: Status Check - Keycloak Guides
|
name: Status Check - Keycloak Guides
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
|
- conditional
|
||||||
- build
|
- build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
1
.github/workflows/js-ci.yml
vendored
1
.github/workflows/js-ci.yml
vendored
|
@ -330,6 +330,7 @@ jobs:
|
||||||
name: Status Check - Keycloak JavaScript CI
|
name: Status Check - Keycloak JavaScript CI
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
|
- conditional
|
||||||
- admin-client
|
- admin-client
|
||||||
- keycloak-js
|
- keycloak-js
|
||||||
- keycloak-masthead
|
- keycloak-masthead
|
||||||
|
|
1
.github/workflows/operator-ci.yml
vendored
1
.github/workflows/operator-ci.yml
vendored
|
@ -203,6 +203,7 @@ jobs:
|
||||||
name: Status Check - Keycloak Operator CI
|
name: Status Check - Keycloak Operator CI
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
|
- conditional
|
||||||
- test-local
|
- test-local
|
||||||
- test-remote
|
- test-remote
|
||||||
- test-olm
|
- test-olm
|
||||||
|
|
Loading…
Reference in a new issue