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
|
||||
if: always()
|
||||
needs:
|
||||
- conditional
|
||||
- unit-tests
|
||||
- base-integration-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
|
||||
if: always()
|
||||
needs:
|
||||
- conditional
|
||||
- java
|
||||
- themes
|
||||
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
|
||||
if: always()
|
||||
needs:
|
||||
- conditional
|
||||
- build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
1
.github/workflows/guides.yml
vendored
1
.github/workflows/guides.yml
vendored
|
@ -49,6 +49,7 @@ jobs:
|
|||
name: Status Check - Keycloak Guides
|
||||
if: always()
|
||||
needs:
|
||||
- conditional
|
||||
- build
|
||||
runs-on: ubuntu-latest
|
||||
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
|
||||
if: always()
|
||||
needs:
|
||||
- conditional
|
||||
- admin-client
|
||||
- keycloak-js
|
||||
- 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
|
||||
if: always()
|
||||
needs:
|
||||
- conditional
|
||||
- test-local
|
||||
- test-remote
|
||||
- test-olm
|
||||
|
|
Loading…
Reference in a new issue