├── .deepsource.toml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── push.yml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── md ├── AdditionalFileTest1.md ├── AdditionalFileTest2.md ├── dir1 │ ├── dir1level2 │ │ ├── level-2a.md │ │ └── level-2b.md │ ├── level-1a.md │ └── level-1b.md ├── dir2 │ ├── dir2level2 │ │ ├── level-2a.md │ │ └── level-2b.md │ ├── level-1a.md │ └── level-1b.md ├── dir3 │ ├── dir3level2 │ │ ├── level-2a.md │ │ └── level-2b.md │ └── level-1b.md ├── dir4 │ └── ok4.md ├── dir5 │ └── ok5.md ├── file1.md ├── file2.md ├── file3.markdown └── file4.markdown └── mlc_config.json /.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [[analyzers]] 4 | name = "docker" 5 | enabled = true 6 | 7 | -------------------------------------------------------------------------------- /.github/FUNDING.yml : -------------------------------------------------------------------------------- 1 | ko_fi: gauravnelson -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '[Use Linkspector and action linkspector] ' 5 | assignees: '' 6 | --- 7 | 8 |
11 | 🚨 Update (March 2025)12 |I have developed a new tool called Linkspector, which offers improved functionality and reduced false positives. I recommend using Linkspector for your needs, which is now the preferred and supported option. 13 |Try GitHub action Linkspector!14 | |
15 |
11 | 🚨 Update (March 2025)12 |I have developed a new tool called Linkspector, which offers improved functionality and reduced false positives. I recommend using Linkspector for your needs, which is now the preferred and supported option. 13 |Try GitHub action Linkspector!14 | |
15 |
4 | ⛔️ Deprecation notice (Apr 2025)5 |6 | This repository is now ⛔️ deprecated and is no longer actively maintained. 7 | 8 |9 | For support and further development, please use the maintained fork available at 10 | Tcort GitHub Action Markdown Link Check. 11 | 12 |13 | 14 | I have also developed a new tool called 15 | Linkspector, 16 | which offers improved functionality and reduced false positives. 17 | You can try this tool as an alternative if it fits your needs. 18 | 19 |20 | Try GitHub Action Linkspector! 21 | 22 |23 | |
24 |
285 |
286 |
287 |
288 |