Merge pull request #184 from topoteretes/COG-531-trigger-checks-manually

Remove automatic execution of test that require LLM inputs from merge…
This commit is contained in:
Vasilije 2024-11-08 15:20:15 +01:00 committed by GitHub
commit c8464d8e0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 19 additions and 10 deletions

View file

@ -1,10 +1,11 @@
name: test | neo4j name: test | neo4j
on: on:
workflow_dispatch:
pull_request: pull_request:
branches: branches:
- main - main
workflow_dispatch: types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -21,7 +22,7 @@ jobs:
run_neo4j_integration_test: run_neo4j_integration_test:
name: test name: test
needs: get_docs_changes needs: get_docs_changes
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' | ${{ github.event.label.name == 'run-checks' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults: defaults:

View file

@ -1,10 +1,12 @@
name: test | notebook name: test | notebook
on: on:
workflow_dispatch:
pull_request: pull_request:
branches: branches:
- main - main
workflow_dispatch: types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -21,7 +23,7 @@ jobs:
run_notebook_test: run_notebook_test:
name: test name: test
needs: get_docs_changes needs: get_docs_changes
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' | ${{ github.event.label.name == 'run-checks' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults: defaults:
run: run:

View file

@ -1,10 +1,12 @@
name: test | pgvector name: test | pgvector
on: on:
workflow_dispatch:
pull_request: pull_request:
branches: branches:
- main - main
workflow_dispatch: types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -21,7 +23,7 @@ jobs:
run_pgvector_integration_test: run_pgvector_integration_test:
name: test name: test
needs: get_docs_changes needs: get_docs_changes
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' | ${{ github.event.label.name == 'run-checks' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults: defaults:
run: run:

View file

@ -1,10 +1,12 @@
name: test | qdrant name: test | qdrant
on: on:
workflow_dispatch:
pull_request: pull_request:
branches: branches:
- main - main
workflow_dispatch: types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -21,7 +23,7 @@ jobs:
run_qdrant_integration_test: run_qdrant_integration_test:
name: test name: test
needs: get_docs_changes needs: get_docs_changes
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' | ${{ github.event.label.name == 'run-checks' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults: defaults:

View file

@ -1,10 +1,12 @@
name: test | weaviate name: test | weaviate
on: on:
workflow_dispatch:
pull_request: pull_request:
branches: branches:
- main - main
workflow_dispatch: types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -21,7 +23,7 @@ jobs:
run_weaviate_integration_test: run_weaviate_integration_test:
name: test name: test
needs: get_docs_changes needs: get_docs_changes
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' | ${{ github.event.label.name == 'run-checks' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults: defaults: