From 7c36fc140d0c8361a43a6543ac0baaca94381c2e Mon Sep 17 00:00:00 2001 From: "Konstantin S." Date: Tue, 10 Mar 2026 23:16:08 +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 416ff36..b618dc3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -10,10 +10,10 @@ C# SDK for the [HeyGen](https://www.heygen.com/) AI video generation platform, a ```bash # Build the solution -dotnet build HeyGen.sln +dotnet build HeyGen.slnx # Build for release (also produces NuGet package) -dotnet build HeyGen.sln -c Release +dotnet build HeyGen.slnx -c Release # Run integration tests (requires HEYGEN_API_KEY env var) dotnet test src/tests/IntegrationTests/HeyGen.IntegrationTests.csproj From fde2997218e00cb0dc6c6fa1ac6ae7c4c0a26e19 Mon Sep 17 00:00:00 2001 From: "Konstantin S." Date: Fri, 13 Mar 2026 19:04:06 +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 }}