From 8dc4ab541772627f0db08f628360c8562352a154 Mon Sep 17 00:00:00 2001 From: epernod Date: Thu, 19 Mar 2026 12:09:31 +0100 Subject: [PATCH 1/2] [ci] Add new strategy to run ci on branch only if label to review is present --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 185431c..55a65c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,17 @@ on: push: branches: - main - workflow_dispatch: + - master + + pull_request: + types: [opened, synchronize, reopened, labeled] jobs: build-and-test: name: Run on ${{ matrix.os }} with SOFA ${{ matrix.sofa_branch }} + if: > + github.event_name == 'push' || + contains(github.event.pull_request.labels.*.name, 'pr: status to review') runs-on: ${{ matrix.os }} strategy: fail-fast: false From c225fb0c6baaada2b50592f95986c9fb6a4a540d Mon Sep 17 00:00:00 2001 From: erik pernod Date: Thu, 19 Mar 2026 23:08:06 +0100 Subject: [PATCH 2/2] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 15a7fbe..7f7a102 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ ############################################################################## cmake_minimum_required(VERSION 3.12) -project(InfinyToolkit VERSION 0.1) +project(InfinyToolkit VERSION 0.1 LANGUAGES CXX) include(cmake/environment.cmake)