removed issues
This commit is contained in:
parent
c431e7cc61
commit
5609bbccc8
13 changed files with 0 additions and 64 deletions
5
.github/workflows/get_docs_changes.yml
vendored
5
.github/workflows/get_docs_changes.yml
vendored
|
|
@ -12,11 +12,6 @@ env:
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
changes_outside_docs: ${{ steps.check_changes.outputs.changes_outside_docs }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
|
||||||
6
.github/workflows/mkdocs.yml
vendored
6
.github/workflows/mkdocs.yml
vendored
|
|
@ -17,14 +17,8 @@ permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: run docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: get_docs_changes
|
|
||||||
if: needs.get_docs_changes.outputs.changes_outside_docs == 'false'
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
|
|
|
||||||
6
.github/workflows/py_lint.yml
vendored
6
.github/workflows/py_lint.yml
vendored
|
|
@ -13,14 +13,8 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_lint:
|
run_lint:
|
||||||
name: lint
|
name: lint
|
||||||
needs: get_docs_changes
|
|
||||||
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true'
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
|
|
|
||||||
5
.github/workflows/reusable_notebook.yml
vendored
5
.github/workflows/reusable_notebook.yml
vendored
|
|
@ -19,14 +19,9 @@ env:
|
||||||
RUNTIME__LOG_LEVEL: ERROR
|
RUNTIME__LOG_LEVEL: ERROR
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_notebook_test:
|
run_notebook_test:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
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:
|
||||||
|
|
|
||||||
|
|
@ -19,14 +19,9 @@ env:
|
||||||
RUNTIME__LOG_LEVEL: ERROR
|
RUNTIME__LOG_LEVEL: ERROR
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_notebook_test:
|
run_notebook_test:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
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:
|
||||||
|
|
|
||||||
5
.github/workflows/test_milvus.yml
vendored
5
.github/workflows/test_milvus.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
ENV: 'dev'
|
ENV: 'dev'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_milvus:
|
run_milvus:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' && ${{ github.event.label.name == 'run-checks' }}
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
||||||
2
.github/workflows/test_neo4j.yml
vendored
2
.github/workflows/test_neo4j.yml
vendored
|
|
@ -19,8 +19,6 @@ jobs:
|
||||||
|
|
||||||
run_neo4j_integration_test:
|
run_neo4j_integration_test:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
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:
|
||||||
|
|
|
||||||
5
.github/workflows/test_pgvector.yml
vendored
5
.github/workflows/test_pgvector.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
RUNTIME__LOG_LEVEL: ERROR
|
RUNTIME__LOG_LEVEL: ERROR
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_pgvector_integration_test:
|
run_pgvector_integration_test:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
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:
|
||||||
|
|
|
||||||
5
.github/workflows/test_python_3_10.yml
vendored
5
.github/workflows/test_python_3_10.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
ENV: 'dev'
|
ENV: 'dev'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_common:
|
run_common:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' && ${{ github.event.label.name == 'run-checks' }}
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
||||||
5
.github/workflows/test_python_3_11.yml
vendored
5
.github/workflows/test_python_3_11.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
ENV: 'dev'
|
ENV: 'dev'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_common:
|
run_common:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' && ${{ github.event.label.name == 'run-checks' }}
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
||||||
5
.github/workflows/test_python_3_9.yml
vendored
5
.github/workflows/test_python_3_9.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
ENV: 'dev'
|
ENV: 'dev'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_common:
|
run_common:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' && ${{ github.event.label.name == 'run-checks' }}
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
||||||
5
.github/workflows/test_qdrant.yml
vendored
5
.github/workflows/test_qdrant.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
RUNTIME__LOG_LEVEL: ERROR
|
RUNTIME__LOG_LEVEL: ERROR
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_qdrant_integration_test:
|
run_qdrant_integration_test:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
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:
|
||||||
|
|
|
||||||
5
.github/workflows/test_weaviate.yml
vendored
5
.github/workflows/test_weaviate.yml
vendored
|
|
@ -14,14 +14,9 @@ env:
|
||||||
RUNTIME__LOG_LEVEL: ERROR
|
RUNTIME__LOG_LEVEL: ERROR
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get_docs_changes:
|
|
||||||
name: docs changes
|
|
||||||
uses: ./.github/workflows/get_docs_changes.yml
|
|
||||||
|
|
||||||
run_weaviate_integration_test:
|
run_weaviate_integration_test:
|
||||||
name: test
|
name: test
|
||||||
needs: get_docs_changes
|
|
||||||
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:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue