🐛 Apply ECS and ECR filters in general and not only during discovery. #5940
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 Checking | |
| "on": | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| md-links: | |
| name: Run markdown link check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: markdown-link-check | |
| uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225 # v1.1.2 | |
| with: | |
| use-verbose-mode: "yes" | |
| config-file: ".github/actions/link-check/config.json" |