diff --git a/.github/workflows/get_docs_changes.yml b/.github/workflows/get_docs_changes.yml index 5ac194d9e..4059f588d 100644 --- a/.github/workflows/get_docs_changes.yml +++ b/.github/workflows/get_docs_changes.yml @@ -12,11 +12,6 @@ env: jobs: - get_docs_changes: - name: docs changes - runs-on: ubuntu-latest - outputs: - changes_outside_docs: ${{ steps.check_changes.outputs.changes_outside_docs }} steps: - name: Checkout code diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml index 08a123c6b..bb3551e03 100644 --- a/.github/workflows/mkdocs.yml +++ b/.github/workflows/mkdocs.yml @@ -17,14 +17,8 @@ permissions: contents: write jobs: - get_docs_changes: - name: run docs changes - uses: ./.github/workflows/get_docs_changes.yml deploy: runs-on: ubuntu-latest - needs: get_docs_changes - if: needs.get_docs_changes.outputs.changes_outside_docs == 'false' - steps: - name: Checkout code uses: actions/checkout@master diff --git a/.github/workflows/py_lint.yml b/.github/workflows/py_lint.yml index 761e0ff5d..2ed49c054 100644 --- a/.github/workflows/py_lint.yml +++ b/.github/workflows/py_lint.yml @@ -13,14 +13,8 @@ concurrency: cancel-in-progress: true jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml - run_lint: name: lint - needs: get_docs_changes - if: needs.get_docs_changes.outputs.changes_outside_docs == 'true' strategy: fail-fast: true matrix: diff --git a/.github/workflows/reusable_notebook.yml b/.github/workflows/reusable_notebook.yml index e4bcfc14f..0c0b63ec4 100644 --- a/.github/workflows/reusable_notebook.yml +++ b/.github/workflows/reusable_notebook.yml @@ -19,14 +19,9 @@ env: RUNTIME__LOG_LEVEL: ERROR jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_notebook_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 defaults: run: diff --git a/.github/workflows/reusable_python_example.yml b/.github/workflows/reusable_python_example.yml index 5a8e47e64..03f928656 100644 --- a/.github/workflows/reusable_python_example.yml +++ b/.github/workflows/reusable_python_example.yml @@ -19,14 +19,9 @@ env: RUNTIME__LOG_LEVEL: ERROR jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_notebook_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 defaults: run: diff --git a/.github/workflows/test_milvus.yml b/.github/workflows/test_milvus.yml index d7f401632..5cad72378 100644 --- a/.github/workflows/test_milvus.yml +++ b/.github/workflows/test_milvus.yml @@ -14,14 +14,9 @@ env: ENV: 'dev' jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_milvus: 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 strategy: fail-fast: false diff --git a/.github/workflows/test_neo4j.yml b/.github/workflows/test_neo4j.yml index 934ac653b..e96528134 100644 --- a/.github/workflows/test_neo4j.yml +++ b/.github/workflows/test_neo4j.yml @@ -19,8 +19,6 @@ jobs: run_neo4j_integration_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 defaults: diff --git a/.github/workflows/test_pgvector.yml b/.github/workflows/test_pgvector.yml index bf4db6f9a..a162d2cb4 100644 --- a/.github/workflows/test_pgvector.yml +++ b/.github/workflows/test_pgvector.yml @@ -14,14 +14,9 @@ env: RUNTIME__LOG_LEVEL: ERROR jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_pgvector_integration_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 defaults: run: diff --git a/.github/workflows/test_python_3_10.yml b/.github/workflows/test_python_3_10.yml index 30d266379..39eb4e57a 100644 --- a/.github/workflows/test_python_3_10.yml +++ b/.github/workflows/test_python_3_10.yml @@ -14,14 +14,9 @@ env: ENV: 'dev' jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_common: 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 strategy: fail-fast: false diff --git a/.github/workflows/test_python_3_11.yml b/.github/workflows/test_python_3_11.yml index 1bf8b50f0..2dd704eb9 100644 --- a/.github/workflows/test_python_3_11.yml +++ b/.github/workflows/test_python_3_11.yml @@ -14,14 +14,9 @@ env: ENV: 'dev' jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_common: 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 strategy: fail-fast: false diff --git a/.github/workflows/test_python_3_9.yml b/.github/workflows/test_python_3_9.yml index cac4d0cd5..99c2b9a7a 100644 --- a/.github/workflows/test_python_3_9.yml +++ b/.github/workflows/test_python_3_9.yml @@ -14,14 +14,9 @@ env: ENV: 'dev' jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_common: 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 strategy: fail-fast: false diff --git a/.github/workflows/test_qdrant.yml b/.github/workflows/test_qdrant.yml index 4eaf03504..f0a2e3d3f 100644 --- a/.github/workflows/test_qdrant.yml +++ b/.github/workflows/test_qdrant.yml @@ -14,14 +14,9 @@ env: RUNTIME__LOG_LEVEL: ERROR jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_qdrant_integration_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 defaults: diff --git a/.github/workflows/test_weaviate.yml b/.github/workflows/test_weaviate.yml index 711bd392f..b8eb72383 100644 --- a/.github/workflows/test_weaviate.yml +++ b/.github/workflows/test_weaviate.yml @@ -14,14 +14,9 @@ env: RUNTIME__LOG_LEVEL: ERROR jobs: - get_docs_changes: - name: docs changes - uses: ./.github/workflows/get_docs_changes.yml run_weaviate_integration_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 defaults: