From 1c8d69a1f6d5797d701d7f4a11e5d6feaf9d9494 Mon Sep 17 00:00:00 2001 From: Fuad Hasibul Hasan Date: Thu, 12 Mar 2026 19:34:13 -0400 Subject: [PATCH 1/2] Update CI and format-check workflows to support versioned branches and increment project version to 0.0.2 --- .github/workflows/ci.yml | 2 ++ .github/workflows/format-check.yml | 4 ++-- CMakeLists.txt | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e67cdec..40fcd81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,11 @@ on: pull_request: branches: - parallel + - '*.*.*' push: branches: - parallel + - '*.*.*' env: FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index 89dda48..94d55f6 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -2,9 +2,9 @@ name: Format Check on: push: - branches: [ parallel ] + branches: [ parallel, '*.*.*' ] pull_request: - branches: [ parallel ] + branches: [ parallel, '*.*.*' ] jobs: clang-format-check: diff --git a/CMakeLists.txt b/CMakeLists.txt index 61c5a2a..b0d2558 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.21) project( omegah2csg - VERSION 0.0.1 + VERSION 0.0.2 LANGUAGES CXX C) include(GNUInstallDirs) From 7f6e762c4ea0c8f88494d5d67db37f950e16052a Mon Sep 17 00:00:00 2001 From: Fuad Hasibul Hasan Date: Thu, 12 Mar 2026 19:49:27 -0400 Subject: [PATCH 2/2] Update CI and format-check workflows to restrict branch patterns to 'release/*.*.*' --- .github/workflows/ci.yml | 4 ++-- .github/workflows/format-check.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40fcd81..718af67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,11 +7,11 @@ on: pull_request: branches: - parallel - - '*.*.*' + - 'release/*.*.*' push: branches: - parallel - - '*.*.*' + - 'release/*.*.*' env: FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index 94d55f6..93956ef 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -2,9 +2,9 @@ name: Format Check on: push: - branches: [ parallel, '*.*.*' ] + branches: [ parallel, 'release/*.*.*' ] pull_request: - branches: [ parallel, '*.*.*' ] + branches: [ parallel, 'release/*.*.*' ] jobs: clang-format-check: