From 7d5d19cb596d26d1e464d02576e96e0120d6a8c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Thu, 12 Dec 2024 14:09:24 +0100 Subject: [PATCH] ci: do not run Konnect integration tests in parallel --- .github/workflows/integration-konnect.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-konnect.yaml b/.github/workflows/integration-konnect.yaml index 94d08d5aa..f7900a65d 100644 --- a/.github/workflows/integration-konnect.yaml +++ b/.github/workflows/integration-konnect.yaml @@ -1,9 +1,11 @@ name: Konnect Integration Test concurrency: - # Run only for most recent commit in PRs but for all tags and commits on main + # Only run one workflow at a time. Konnect integration tests cannot be run in parallel + # as they rely on manifests with static identifiers and/or names that would conflict + # if run in parallel. # Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency - group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} + group: ${{ github.workflow }} cancel-in-progress: true on: [pull_request]