From d574d189493be4497b9d37ae4cbc89a235291ed4 Mon Sep 17 00:00:00 2001 From: "Konstantin S." Date: Tue, 10 Mar 2026 23:16:06 +0400 Subject: [PATCH 1/2] Update CLAUDE.md to reference .slnx instead of .sln Co-Authored-By: Claude Opus 4.6 --- CLAUDE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index c67eab8..a7b6101 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -10,10 +10,10 @@ C# SDK for the [AssemblyAI](https://www.assemblyai.com/) speech-to-text and audi ```bash # Build the solution -dotnet build AssemblyAI.sln +dotnet build AssemblyAI.slnx # Build for release (also produces NuGet package) -dotnet build AssemblyAI.sln -c Release +dotnet build AssemblyAI.slnx -c Release # Run integration tests (requires ASSEMBLYAI_API_KEY env var) dotnet test src/tests/IntegrationTests/AssemblyAI.IntegrationTests.csproj From c893101b6177cd207c68cd99d7fe2eb09fd2d053 Mon Sep 17 00:00:00 2001 From: "Konstantin S." Date: Fri, 13 Mar 2026 19:03:46 +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 2798304..a793648 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 --squash "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ secrets.PERSONAL_TOKEN || secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}