Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading