From 3d10c83a4971348919539c76318a9ea90ceafb58 Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Wed, 5 Aug 2026 17:08:06 +0100 Subject: [PATCH 1/2] 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 452c019b82d6a9226a1d07cf89802fa4143b3b69 Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Wed, 5 Aug 2026 17:08:08 +0100 Subject: [PATCH 2/2] test(sandbox): signature change without PreviousVersion, fix branch --- File_Engine/Compute/NewFilenameIfExists.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/File_Engine/Compute/NewFilenameIfExists.cs b/File_Engine/Compute/NewFilenameIfExists.cs index d5000f2..cee3264 100644 --- a/File_Engine/Compute/NewFilenameIfExists.cs +++ b/File_Engine/Compute/NewFilenameIfExists.cs @@ -34,7 +34,7 @@ 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) + public static string NewFilenameIfExists(string targetPath, bool skipTrailingNumber = false) { int i = 0; do