From a21ac7e08d70e90a2beb3c0da4652f20a5f21b6b Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Wed, 5 Aug 2026 17:07:56 +0100 Subject: [PATCH 1/3] ci(sandbox): pin harness at fix/ci-versioning-upgrade-recapture --- .github/workflows/versioning.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index bf138c4..4960da3 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 90 steps: - name: Run ci-versioning - uses: BuroHappoldEngineeringAdmin/CI_Toolkit/.github/actions/ci-versioning@develop + uses: BuroHappoldEngineeringAdmin/CI_Toolkit/.github/actions/ci-versioning@fix/ci-versioning-upgrade-recapture with: app_id: ${{ secrets.BHOM_APP_ID }} private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }} From 9eccb27567ccf16eeb1885c571bf2dec468b1c39 Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Wed, 5 Aug 2026 17:07:58 +0100 Subject: [PATCH 2/3] test(sandbox): signature change with PreviousVersion, fix branch --- File_Engine/Compute/NewFilenameIfExists.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/File_Engine/Compute/NewFilenameIfExists.cs b/File_Engine/Compute/NewFilenameIfExists.cs index d5000f2..141cffe 100644 --- a/File_Engine/Compute/NewFilenameIfExists.cs +++ b/File_Engine/Compute/NewFilenameIfExists.cs @@ -22,6 +22,7 @@ using System; using System.Collections.Generic; +using BH.oM.Base.Attributes; using System.ComponentModel; using System.IO; using System.Linq; @@ -34,7 +35,8 @@ public static partial class Compute { [Description("If the targetPath points to a file that exists, return the same filepath with appended `- Copy (i)`, " + "where `i` is the first index pointing to a non existing file.")] - public static string NewFilenameIfExists(string targetPath) + [PreviousVersion("9.3", "BH.Engine.Adapters.File.Compute.NewFilenameIfExists(System.String)")] + public static string NewFilenameIfExists(string targetPath, bool skipTrailingNumber = false) { int i = 0; do From 1a392788314a113f13b1e019b6704ae49fca7373 Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Wed, 5 Aug 2026 17:36:36 +0100 Subject: [PATCH 3/3] ci(sandbox): repoint at the cache-hit fix branch --- .github/workflows/versioning.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 4960da3..62a03c0 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 90 steps: - name: Run ci-versioning - uses: BuroHappoldEngineeringAdmin/CI_Toolkit/.github/actions/ci-versioning@fix/ci-versioning-upgrade-recapture + uses: BuroHappoldEngineeringAdmin/CI_Toolkit/.github/actions/ci-versioning@fix/recapture-on-cache-hit with: app_id: ${{ secrets.BHOM_APP_ID }} private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }}