Skip to content

Commit bde31cd

Browse files
authored
exclude AGENTS.md and CLAUDE.md from autodoc (#35)
1 parent 20583df commit bde31cd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/autodoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
- name: Process markdown files
1818
run: |
19-
find . -name '*.md' | xargs perl tools/autodoc.pl
19+
find . -name '*.md' -not -name 'AGENTS.md' -not -name 'CLAUDE.md' -not -path './examples/*' | xargs perl tools/autodoc.pl
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/smoke.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
- name: Check documentation generator
1919
run: |
20-
find . -name '*.md' | xargs env AUTODOC_DRYRUN=1 perl tools/autodoc.pl
20+
find . -name '*.md' -not -name 'AGENTS.md' -not -name 'CLAUDE.md' -not -path './examples/*' | xargs env AUTODOC_DRYRUN=1 perl tools/autodoc.pl
2121
- name: Cache testdata
2222
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2323
env:

0 commit comments

Comments
 (0)