From 1955b2594bc29f04c33871c058c3bb7d7746b0fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:44:16 +0000 Subject: [PATCH 1/6] Initial plan From 80928008234d274907f56632ccb17a011608cf72 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:48:44 +0000 Subject: [PATCH 2/6] Update GitHub Actions workflow to use latest action versions Co-authored-by: rwsdwatson <90462285+rwsdwatson@users.noreply.github.com> Agent-Logs-Url: https://github.com/RWS/Multiselect-Language-ComboBox/sessions/ba3eca72-ebf1-4647-9410-c2e42bf5c7e3 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4feb508..dc53bd6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,18 +31,18 @@ jobs: fetch-depth: 0 # Get all history to allow automatic versioning using MinVer - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0 + uses: gittools/actions/gitversion/setup@v4 with: versionSpec: '5.x' - name: Determine Version - uses: gittools/actions/gitversion/execute@v0 + uses: gittools/actions/gitversion/execute@v4 with: useConfigFile: true # Install the .NET SDK indicated in the global.json file - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: '8.0.x' @@ -72,7 +72,7 @@ jobs: # Install the .NET SDK indicated in the global.json file - name: Setup .NET Core - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 # Publish all NuGet packages to NuGet.org # Use --skip-duplicate to prevent errors if a package with the same version already exists. From d1c8b48a4c4359a2af0408c791bb1473592f8cdf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:57:59 +0000 Subject: [PATCH 3/6] Fix build: update versionSpec to 6.x and migrate GitVersion.yml to v6 format Co-authored-by: rwsdwatson <90462285+rwsdwatson@users.noreply.github.com> Agent-Logs-Url: https://github.com/RWS/Multiselect-Language-ComboBox/sessions/82648594-3731-4eb7-a270-fd96512ff492 --- .github/workflows/build.yml | 2 +- GitVersion.yml | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dc53bd6..8923b93 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Install GitVersion uses: gittools/actions/gitversion/setup@v4 with: - versionSpec: '5.x' + versionSpec: '6.x' - name: Determine Version uses: gittools/actions/gitversion/execute@v4 diff --git a/GitVersion.yml b/GitVersion.yml index edbb0b9..602cd00 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,4 +1,4 @@ -mode: Mainline +workflow: Mainline commit-message-incrementing: Enabled major-version-bump-message: '\+semver:\s?(breaking|major)' minor-version-bump-message: '\+semver:\s?(feature|minor)' @@ -7,20 +7,19 @@ no-bump-message: '\+semver:\s?(none|skip)' branches: main: regex: ^master$|^main$ - tag: '' + label: '' increment: Patch - is-mainline: true feature: regex: ^features?[/-]|^LCC-|^bugfix[/-]|^fix[/-] - tag: useBranchName + label: '{BranchName}' pull-request: regex: ^(pull|pull\-requests|pr)[/-] - tag: pr + label: pr support: regex: ^rev(ision)?[/-] - tag: rev + label: rev increment: None hotfix: regex: ^hotfix(es)?[/-] - tag: hf + label: hf increment: None \ No newline at end of file From 9ac53bdb16e207183c69d7191aad2725e4df676f Mon Sep 17 00:00:00 2001 From: David Watson Date: Tue, 24 Mar 2026 12:26:27 +0000 Subject: [PATCH 4/6] revert git version --- .github/workflows/build.yml | 2 +- .gitignore | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8923b93..9ab5e98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Install GitVersion uses: gittools/actions/gitversion/setup@v4 with: - versionSpec: '6.x' + versionSpec: '5.12.0' - name: Determine Version uses: gittools/actions/gitversion/execute@v4 diff --git a/.gitignore b/.gitignore index 8a30d25..92b2ae5 100644 --- a/.gitignore +++ b/.gitignore @@ -396,3 +396,4 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml +.vscode/settings.json From d2bc043f19f5d53e6d9cac9a970113035b4a0c37 Mon Sep 17 00:00:00 2001 From: David Watson Date: Tue, 24 Mar 2026 12:30:45 +0000 Subject: [PATCH 5/6] keep tweaking --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ab5e98..0b0be30 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,12 +31,12 @@ jobs: fetch-depth: 0 # Get all history to allow automatic versioning using MinVer - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v4 + uses: gittools/actions/gitversion/setup@v3 with: versionSpec: '5.12.0' - name: Determine Version - uses: gittools/actions/gitversion/execute@v4 + uses: gittools/actions/gitversion/execute@v3 with: useConfigFile: true From 0424cd3a63fff569f8b09e77fbbf9f33eaa3a103 Mon Sep 17 00:00:00 2001 From: David Watson Date: Tue, 24 Mar 2026 12:36:30 +0000 Subject: [PATCH 6/6] more roll back --- .github/workflows/build.yml | 2 +- GitVersion.yml | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b0be30..f13914b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Install GitVersion uses: gittools/actions/gitversion/setup@v3 with: - versionSpec: '5.12.0' + versionSpec: '5.x' - name: Determine Version uses: gittools/actions/gitversion/execute@v3 diff --git a/GitVersion.yml b/GitVersion.yml index 602cd00..edbb0b9 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,4 +1,4 @@ -workflow: Mainline +mode: Mainline commit-message-incrementing: Enabled major-version-bump-message: '\+semver:\s?(breaking|major)' minor-version-bump-message: '\+semver:\s?(feature|minor)' @@ -7,19 +7,20 @@ no-bump-message: '\+semver:\s?(none|skip)' branches: main: regex: ^master$|^main$ - label: '' + tag: '' increment: Patch + is-mainline: true feature: regex: ^features?[/-]|^LCC-|^bugfix[/-]|^fix[/-] - label: '{BranchName}' + tag: useBranchName pull-request: regex: ^(pull|pull\-requests|pr)[/-] - label: pr + tag: pr support: regex: ^rev(ision)?[/-] - label: rev + tag: rev increment: None hotfix: regex: ^hotfix(es)?[/-] - label: hf + tag: hf increment: None \ No newline at end of file