Skip to content

Commit 4d948ad

Browse files
author
hashgraph-online[bot]
committed
fix: exclude plugins/ from markdown link check (upstream relative links)
Plugin READMEs contain relative links to their upstream docs (CONTRIBUTING.md, docs/ARCHITECTURE.md, etc.) that don't exist in the awesome-codex-plugins repo context. The link checker was reporting 340+ false failures. Only root-level markdown files are now checked, which are under our control.
1 parent a0cbfbf commit 4d948ad

3 files changed

Lines changed: 35 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4
22+
- name: Find markdown files to check (exclude plugins/)
23+
id: files
24+
run: |
25+
FILES=$(find . -name "*.md" -not -path "./plugins/*" -not -path "./.git/*" | tr '\n' ' ')
26+
echo "files=$FILES" >> "$GITHUB_OUTPUT"
2227
- uses: gaurav-nelson/github-action-markdown-link-check@v1
2328
with:
2429
config-file: .mlc_config.json
30+
file-path: ${{ steps.files.outputs.files }}
2531

2632
build:
2733
runs-on: ubuntu-latest

.mlc_config.json

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1-
{"ignorePatterns":[{"pattern":"^https://developers.openai.com"},{"pattern":"^https://awesome.re"},{"pattern":"^https://community.openai.com"},{"pattern":"^https://hol.org"}],"aliveStatusCodes":[200,301,302,403],"retryOn429":true,"retryCount":5,"fallbackRetryDelay":30000}
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "^https://developers.openai.com"
5+
},
6+
{
7+
"pattern": "^https://awesome.re"
8+
},
9+
{
10+
"pattern": "^https://community.openai.com"
11+
},
12+
{
13+
"pattern": "^https://hol.org"
14+
},
15+
{
16+
"pattern": "^https://cr\\.yp\\.to"
17+
}
18+
],
19+
"aliveStatusCodes": [
20+
200,
21+
301,
22+
302,
23+
403
24+
],
25+
"retryOn429": true,
26+
"retryCount": 5,
27+
"fallbackRetryDelay": 30000
28+
}

plugins/2kDarki/codex-mem/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ See the [LICENSE](LICENSE) file for full details.
347347

348348
## Support
349349

350-
- **Documentation**: [docs/](docs/)
350+
- **Documentation**: [docs](https://github.com/2kDarki/codex-mem/tree/main/docs)
351351
- **Issues**: [GitHub Issues](https://github.com/thedotmack/claude-mem/issues)
352352
- **Repository**: [github.com/thedotmack/claude-mem](https://github.com/thedotmack/claude-mem)
353353
- **Official X Account**: [@Claude_Memory](https://x.com/Claude_Memory)

0 commit comments

Comments
 (0)