From c7d702450a6e5a78d1520d06d0574993160a433b Mon Sep 17 00:00:00 2001 From: tnakazato Date: Wed, 11 Mar 2026 16:35:48 +0900 Subject: [PATCH 1/2] Add concurrency configuration to workflow --- .github/workflows/monolithic-casa.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/monolithic-casa.yml b/.github/workflows/monolithic-casa.yml index 1966bcd..8141055 100644 --- a/.github/workflows/monolithic-casa.yml +++ b/.github/workflows/monolithic-casa.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [ main ] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + env: CASA_RELEASE: casa-6.7.0-31-py3.10.el8 From c1caf521cac268ee913feeca7ca4b0db601b62e9 Mon Sep 17 00:00:00 2001 From: tnakazato Date: Wed, 11 Mar 2026 16:36:31 +0900 Subject: [PATCH 2/2] Enable concurrency for Python app workflow Add concurrency settings to the GitHub Actions workflow --- .github/workflows/pythonapp.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 2f05b9e..c04e83e 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -9,6 +9,10 @@ on: pull_request: branches: [ main ] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: build: