Change to AND operator and move from concurrency to run

This commit is contained in:
Leon Luithlen 2024-11-11 14:55:50 +01:00
parent f097fcfd3b
commit 9192b04dc8
8 changed files with 11 additions and 11 deletions

View file

@ -22,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' | ${{ github.event.label.name == 'run-checks' }} 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

@ -23,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' | ${{ github.event.label.name == 'run-checks' }} 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

@ -23,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' | ${{ github.event.label.name == 'run-checks' }} 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

@ -8,7 +8,7 @@ on:
types: [labeled] types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ${{ github.event.label.name == 'run-checks' }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true cancel-in-progress: true
env: env:
@ -22,7 +22,7 @@ jobs:
run_common: run_common:
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
strategy: strategy:
fail-fast: false fail-fast: false

View file

@ -8,7 +8,7 @@ on:
types: [labeled] types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ${{ github.event.label.name == 'run-checks' }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true cancel-in-progress: true
env: env:
@ -22,7 +22,7 @@ jobs:
run_common: run_common:
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
strategy: strategy:
fail-fast: false fail-fast: false

View file

@ -8,7 +8,7 @@ on:
types: [labeled] types: [labeled]
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ${{ github.event.label.name == 'run-checks' }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true cancel-in-progress: true
env: env:
@ -22,7 +22,7 @@ jobs:
run_common: run_common:
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
strategy: strategy:
fail-fast: false fail-fast: false

View file

@ -23,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' | ${{ github.event.label.name == 'run-checks' }} 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

@ -23,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' | ${{ github.event.label.name == 'run-checks' }} 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: