diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dd7c9aba4..0c5039e597 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,11 +3,6 @@ name: 'Testing: CI' on: workflow_call: -concurrency: - group: 'ci-${{ github.workflow }}-${{ github.head_ref || github.ref }}' - cancel-in-progress: |- - ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/heads/release/') }} - permissions: checks: 'write' contents: 'read' diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index bf7ca60d4e..f0ae5ad43b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -10,11 +10,6 @@ on: required: true type: 'string' -concurrency: - group: 'e2e-${{ github.workflow }}-${{ github.head_ref || github.ref }}' - cancel-in-progress: |- - ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/heads/release/') }} - jobs: e2e_linux: name: 'E2E Test (Linux) - ${{ matrix.sandbox }}' diff --git a/.github/workflows/orchestrator.yml b/.github/workflows/orchestrator.yml index ec9c87668a..62baedf598 100644 --- a/.github/workflows/orchestrator.yml +++ b/.github/workflows/orchestrator.yml @@ -8,6 +8,10 @@ on: - 'release/**' merge_group: +concurrency: + group: '${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}' + cancel-in-progress: true + permissions: contents: 'read' packages: 'write' diff --git a/build.png b/build.png new file mode 100644 index 0000000000..453c605d84 Binary files /dev/null and b/build.png differ