feat: format-preserving YAML edits + Atmos Version Tracker #2152
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: Link Check | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - '!website/**' | |
| - 'lychee.toml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - '**.md' | |
| - '!website/**' | |
| - 'lychee.toml' | |
| workflow_dispatch: | |
| jobs: | |
| link-check: | |
| name: Check Markdown Links | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Check links with lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --config lychee.toml --root-dir ${{ github.workspace }} '**/*.md' | |
| fail: true | |
| jobSummary: true | |
| token: ${{ secrets.GITHUB_TOKEN }} |