Fix typo in README.md about agent definitions #1535
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: Check .md links | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - '**.md' | |
| - '.github/workflows/markdown-link-check.yml' | |
| - '.github/.linkspector.yml' | |
| schedule: | |
| - cron: "0 0 * * *" # Run at midnight UTC daily | |
| permissions: | |
| contents: read | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-22.04 | |
| # check out the latest version of the code | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| # Checks the status of hyperlinks in all files | |
| - name: Run linkspector | |
| uses: umbrelladocs/action-linkspector@v1 | |
| with: | |
| reporter: local | |
| filter_mode: nofilter | |
| fail_on_error: true | |
| config_file: ".github/.linkspector.yml" |