Try run-checks approach
This commit is contained in:
parent
c62800c2f0
commit
c2dfe25ef2
5 changed files with 34 additions and 0 deletions
6
.github/workflows/test_neo4j.yml
vendored
6
.github/workflows/test_neo4j.yml
vendored
|
|
@ -2,6 +2,10 @@ name: test | neo4j
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [labeled]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
@ -11,6 +15,8 @@ env:
|
|||
RUNTIME__LOG_LEVEL: ERROR
|
||||
|
||||
jobs:
|
||||
if: ${{ github.event.label.name == 'run-checks' }}
|
||||
|
||||
get_docs_changes:
|
||||
name: docs changes
|
||||
uses: ./.github/workflows/get_docs_changes.yml
|
||||
|
|
|
|||
7
.github/workflows/test_notebook.yml
vendored
7
.github/workflows/test_notebook.yml
vendored
|
|
@ -2,6 +2,11 @@ name: test | notebook
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [labeled]
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
@ -11,6 +16,8 @@ env:
|
|||
RUNTIME__LOG_LEVEL: ERROR
|
||||
|
||||
jobs:
|
||||
if: ${{ github.event.label.name == 'run-checks' }}
|
||||
|
||||
get_docs_changes:
|
||||
name: docs changes
|
||||
uses: ./.github/workflows/get_docs_changes.yml
|
||||
|
|
|
|||
7
.github/workflows/test_pgvector.yml
vendored
7
.github/workflows/test_pgvector.yml
vendored
|
|
@ -2,6 +2,11 @@ name: test | pgvector
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [labeled]
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
@ -11,6 +16,8 @@ env:
|
|||
RUNTIME__LOG_LEVEL: ERROR
|
||||
|
||||
jobs:
|
||||
if: ${{ github.event.label.name == 'run-checks' }}
|
||||
|
||||
get_docs_changes:
|
||||
name: docs changes
|
||||
uses: ./.github/workflows/get_docs_changes.yml
|
||||
|
|
|
|||
7
.github/workflows/test_qdrant.yml
vendored
7
.github/workflows/test_qdrant.yml
vendored
|
|
@ -2,6 +2,11 @@ name: test | qdrant
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [labeled]
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
@ -11,6 +16,8 @@ env:
|
|||
RUNTIME__LOG_LEVEL: ERROR
|
||||
|
||||
jobs:
|
||||
if: ${{ github.event.label.name == 'run-checks' }}
|
||||
|
||||
get_docs_changes:
|
||||
name: docs changes
|
||||
uses: ./.github/workflows/get_docs_changes.yml
|
||||
|
|
|
|||
7
.github/workflows/test_weaviate.yml
vendored
7
.github/workflows/test_weaviate.yml
vendored
|
|
@ -2,6 +2,11 @@ name: test | weaviate
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [labeled]
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
@ -11,6 +16,8 @@ env:
|
|||
RUNTIME__LOG_LEVEL: ERROR
|
||||
|
||||
jobs:
|
||||
if: ${{ github.event.label.name == 'run-checks' }}
|
||||
|
||||
get_docs_changes:
|
||||
name: docs changes
|
||||
uses: ./.github/workflows/get_docs_changes.yml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue