Add typo check workflow for pull requests#481
Add typo check workflow for pull requests#481riderx wants to merge 3 commits intoionic-team:mainfrom
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.
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 |
There was a problem hiding this comment.
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: |
There was a problem hiding this comment.
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.