Skip to content

Commit 9337b75

Browse files
authored
Merge pull request #1 from tryAGI/codex/standardize-auto-merge-token
fix: use personal token only for auto-merge
2 parents 9f1c034 + 0a65cee commit 9337b75

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 --merge "$PR_URL"
3737
env:
3838
PR_URL: ${{ github.event.pull_request.html_url }}
39-
GITHUB_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
@@ -12,10 +12,10 @@ C# SDK originally based on the Ollama OpenAPI specification, generated using [Op
1212

1313
```bash
1414
# Build the solution
15-
dotnet build Reka.sln
15+
dotnet build Reka.slnx
1616

1717
# Build for release (also produces NuGet package)
18-
dotnet build Reka.sln -c Release
18+
dotnet build Reka.slnx -c Release
1919

2020
# Run integration tests (uses Testcontainers, no API key required -- runs Ollama in Docker)
2121
dotnet test src/tests/Reka.IntegrationTests/Reka.IntegrationTests.csproj

0 commit comments

Comments
 (0)