diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index c0b6efbbe..167156917 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -10,10 +10,6 @@ on: - main - release/* workflow_dispatch: {} -# Cancel old runs when a new commit is pushed to the same branch if not on main -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} jobs: streaming-Pip-Install: timeout-minutes: 10 diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index fe8ef2edd..4a85fa0de 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -11,10 +11,6 @@ on: - release/* workflow_call: workflow_dispatch: {} -# Cancel old runs when a new commit is pushed to the same branch if not on main -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} defaults: run: working-directory: . diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index b1b97c6c1..f627706be 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -11,10 +11,6 @@ on: - release/* workflow_call: workflow_dispatch: {} -# Cancel old runs when a new commit is pushed to the same branch if not on main -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} jobs: pytest: timeout-minutes: 30