From 3d3d97d4ee43135e7b8cd42c03713294d291ea7e Mon Sep 17 00:00:00 2001 From: TechLord22 <37029404+techlord22@users.noreply.github.com> Date: Thu, 28 Dec 2023 20:32:04 -0500 Subject: [PATCH] fix test and formatting action concurrency groups --- .github/workflows/format_java.yml | 2 +- .github/workflows/test_java.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/format_java.yml b/.github/workflows/format_java.yml index e4537200c13..e8d233df439 100644 --- a/.github/workflows/format_java.yml +++ b/.github/workflows/format_java.yml @@ -10,7 +10,7 @@ on: paths: ['src/main/java/**', 'src/test/**'] concurrency: - group: checks-${{ github.head_ref || github.ref }} + group: formatting-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/test_java.yml b/.github/workflows/test_java.yml index 4840c9fa34d..11bc42e8067 100644 --- a/.github/workflows/test_java.yml +++ b/.github/workflows/test_java.yml @@ -12,7 +12,7 @@ on: 'gradlew**', 'src/main/resources/*_at.cfg'] concurrency: - group: checks-${{ github.head_ref || github.ref }} + group: tests-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: