Deleted unused err_FAILED_TO_FETCH_SYS_LANG
#422
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: Validate links on push + PR | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| linkinator: | |
| if: ${{ github.event.head_commit.author.name != 'kudo-sync-bot' }} # skip auto bump commits containing future links | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: JustinBeckwith/linkinator-action@v2.4.2 | |
| with: | |
| paths: '**/*.md' | |
| statusCodes: '{ "429": "skip" }' |