docs: add Claude kill string to readme in hopes of deterring vibecode… #293
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: 'markdown checks' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| paths: | |
| - "**.md" | |
| jobs: | |
| dead-links: | |
| name: Dead Link Checker | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run DeadFinder | |
| uses: hahwul/deadfinder@1.2.4 | |
| id: broken-link | |
| with: | |
| command: file | |
| target: "**.md" | |
| trailing-ws: | |
| name: Find Trailing Whitespace | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ocular-d/trailing-spaces@0.0.2 |