Delete .cursor/website.mdc #310
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spell Check with Typos | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
spellcheck: | |
name: Spell Check | |
runs-on: ubuntu-latest | |
concurrency: | |
group: spellcheck-${{ github.ref }} | |
cancel-in-progress: true | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run Spell Check | |
uses: crate-ci/typos@v1 | |
with: | |
config: _typos.toml | |
write_changes: true | |
- name: Test Configuration | |
if: ${{ always() }} | |
run: | | |
echo "Testing typos configuration..." | |
if [ -f _typos.toml ]; then | |
echo "✅ Configuration file exists" | |
typos --dump-config - | grep -q "files.extend-exclude" && echo "✅ Configuration loaded correctly" || echo "❌ Configuration not loaded" | |
else | |
echo "❌ Configuration file not found" | |
exit 1 | |
fi | |
- name: Commit Spell Check Changes | |
if: ${{ success() && github.event_name == 'pull_request' }} | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "chore: fix typos [skip ci]" | |
commit_user_name: "Typos Bot" | |
commit_user_email: "[email protected]" | |
file_pattern: "**/*.md **/*.yml **/*.yaml **/*.js **/*.ts **/*.tsx **/*.jsx **/*.py **/*.java **/*.go **/*.rs **/*.c **/*.cpp **/*.h" |