Skip to content
Open
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
16 changes: 16 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Typo Check

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
typos:
name: Check for typos
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

Consider adding explicit minimal permissions (e.g., contents: read) for this workflow/job. The repo’s other workflow sets permissions explicitly, and doing so avoids relying on repository defaults and reduces token scope.

Suggested change
name: Check for typos
name: Check for typos
permissions:
contents: read

Copilot uses AI. Check for mistakes.
runs-on: ubuntu-latest
steps:
Comment on lines +8 to +11
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

Add timeout-minutes to the job for consistency with other workflows in this repo and to prevent a stuck runner from consuming CI capacity indefinitely.

Copilot uses AI. Check for mistakes.
- name: Checkout code
uses: actions/checkout@v4

- name: Check for typos
uses: crate-ci/typos@v1.39.0
Loading