From bba01ebaff900ab55f9743463877a7348fb0ac90 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Thu, 12 Jan 2023 18:13:15 +0100 Subject: [PATCH] Allow concurrency with the build job. --- .github/workflows/maestro.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maestro.yml b/.github/workflows/maestro.yml index 91a73366a6..d3d0962037 100644 --- a/.github/workflows/maestro.yml +++ b/.github/workflows/maestro.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false # Allow all jobs on develop. Just one per PR. concurrency: - group: ${{ github.ref == 'refs/heads/develop' && format('build-develop-{0}', github.sha) || format('build-debug-{0}', github.ref) }} + group: ${{ github.ref == 'refs/heads/develop' && format('maestro-develop-{0}', github.sha) || format('maestro-debug-{0}', github.ref) }} cancel-in-progress: true steps: - uses: actions/checkout@v3