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 --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ C# source generator library that produces JSON Schema definitions from C# interf

```bash
# Build the solution
dotnet build CSharpToJsonSchema.sln
dotnet build CSharpToJsonSchema.slnx

# Build for release (also produces NuGet package)
dotnet build CSharpToJsonSchema.sln -c Release
dotnet build CSharpToJsonSchema.slnx -c Release

# Run unit tests
dotnet test src/tests/CSharpToJsonSchema.UnitTests/CSharpToJsonSchema.UnitTests.csproj
Expand All @@ -31,7 +31,7 @@ dotnet test src/tests/CSharpToJsonSchema.AotTests/CSharpToJsonSchema.AotTests.cs
dotnet test src/tests/CSharpToJsonSchema.MeaiTests/CSharpToJsonSchema.MeaiTests.csproj

# Run all tests
dotnet test CSharpToJsonSchema.sln
dotnet test CSharpToJsonSchema.slnx
```

## Architecture
Expand Down
Loading