Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

jobs:
windows-build:
permissions:
contents: read
Copy link

Copilot AI Mar 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new job-level permissions restrict GITHUB_TOKEN to contents: read only, but this workflow uses dorny/test-reporter@v2, which creates/updates GitHub Check Runs for the test report. With checks permission omitted, this step is likely to fail with a 403 when trying to publish results. Consider adding the minimal additional scopes needed (typically checks: write and, for PR annotations, pull-requests: read) alongside contents: read.

Suggested change
contents: read
contents: read
checks: write
pull-requests: read

Copilot uses AI. Check for mistakes.
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
Expand Down
Loading