From 19e88ec8a10134f101d5993455e9a3e798a5dba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Tue, 12 Dec 2023 10:32:13 +0100 Subject: [PATCH] ci: Fix the concurrency group for db tests (no-changelog) (#7998) The CI concurrency group was incorrectly named in https://github.com/n8n-io/n8n/pull/7656. This PR fixes that. --- .github/workflows/ci-postgres-mysql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-postgres-mysql.yml b/.github/workflows/ci-postgres-mysql.yml index 5eb257733e..c0e4b6f742 100644 --- a/.github/workflows/ci-postgres-mysql.yml +++ b/.github/workflows/ci-postgres-mysql.yml @@ -9,7 +9,7 @@ on: - packages/cli/src/databases/migrations/** concurrency: - group: e2e-${{ github.event.pull_request.number || github.ref }} + group: db-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: