From 480b840a9b9dc8278699bf0cc226f7b97523ff32 Mon Sep 17 00:00:00 2001 From: "Konstantin S." Date: Tue, 10 Mar 2026 23:16:07 +0400 Subject: [PATCH 1/2] Update CLAUDE.md to reference .slnx instead of .sln Co-Authored-By: Claude Opus 4.6 --- CLAUDE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index e7d5bb1..dff796f 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -10,10 +10,10 @@ C# source generator library that produces JSON Schema definitions from C# interf ```bash # Build the solution -dotnet build CSharpToJsonSchema.sln +dotnet build CSharpToJsonSchema.slnx # Build for release (also produces NuGet package) -dotnet build CSharpToJsonSchema.sln -c Release +dotnet build CSharpToJsonSchema.slnx -c Release # Run unit tests dotnet test src/tests/CSharpToJsonSchema.UnitTests/CSharpToJsonSchema.UnitTests.csproj @@ -31,7 +31,7 @@ dotnet test src/tests/CSharpToJsonSchema.AotTests/CSharpToJsonSchema.AotTests.cs dotnet test src/tests/CSharpToJsonSchema.MeaiTests/CSharpToJsonSchema.MeaiTests.csproj # Run all tests -dotnet test CSharpToJsonSchema.sln +dotnet test CSharpToJsonSchema.slnx ``` ## Architecture From ad7f2681d3c5879fb0fde75e8cc113b499788e69 Mon Sep 17 00:00:00 2001 From: "Konstantin S." Date: Fri, 13 Mar 2026 19:03:49 +0400 Subject: [PATCH 2/2] fix: use personal token only for auto-merge --- .github/workflows/auto-merge.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 17a043b..1d8925c 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -30,10 +30,10 @@ jobs: run: gh pr review --approve "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Enable auto-merge run: gh pr merge --auto --merge "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}