-
Notifications
You must be signed in to change notification settings - Fork 515
Add typo check workflow for pull requests #481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
@riderx is attempting to deploy a commit to the Ionic Team on Vercel. A member of the Team first needs to authorize it. |
fix the version instead of master
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Adds a GitHub Actions workflow to run automated typo detection on pull requests to catch spelling issues during review.
Changes:
- Introduce a new
typosworkflow triggered on PR open/sync/reopen. - Run
crate-ci/typosafter checking out the repository.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| jobs: | ||
| typos: | ||
| name: Check for typos |
Copilot
AI
Feb 10, 2026
There was a problem hiding this comment.
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.
| name: Check for typos | |
| name: Check for typos | |
| permissions: | |
| contents: read |
| typos: | ||
| name: Check for typos | ||
| runs-on: ubuntu-latest | ||
| steps: |
Copilot
AI
Feb 10, 2026
There was a problem hiding this comment.
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.
Introduce a GitHub Actions workflow to automatically check for typos in pull requests. This enhances code quality by ensuring that typographical errors are caught early in the review process.