Skip to content

Commit 5573187

Browse files
HavenDVclaude
andauthored
fix: use personal token only for auto-merge (#97)
* Update CLAUDE.md to reference .slnx instead of .sln Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: use personal token only for auto-merge --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e770fe2 commit 5573187

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/auto-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
run: gh pr review --approve "$PR_URL"
3131
env:
3232
PR_URL: ${{ github.event.pull_request.html_url }}
33-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434

3535
- name: Enable auto-merge
3636
run: gh pr merge --auto --squash "$PR_URL"
3737
env:
3838
PR_URL: ${{ github.event.pull_request.html_url }}
39-
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN || secrets.GITHUB_TOKEN }}
39+
GH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ C# SDK for the [Vectara](https://vectara.com/) RAG-as-a-Service platform, auto-g
1010

1111
```bash
1212
# Build the solution
13-
dotnet build Vectara.sln
13+
dotnet build Vectara.slnx
1414

1515
# Build for release (also produces NuGet package)
16-
dotnet build Vectara.sln -c Release
16+
dotnet build Vectara.slnx -c Release
1717

1818
# Run integration tests (requires VECTARA_API_KEY env var)
1919
dotnet test src/tests/IntegrationTests/Vectara.IntegrationTests.csproj

0 commit comments

Comments
 (0)