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 }} 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