Skip to content

autodoc updates

autodoc updates #2

Workflow file for this run

name: Auto-Doc
on:
pull_request:
branches:
- main
types:
- closed
jobs:
autodoc:
runs-on: ubuntu-latest
name: "Run commands to generate documentation"
if: github.event.pull_request.merged == true
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Process markdown files
run: |
find . -name '*.md' -not -name 'AGENTS.md' -not -name 'CLAUDE.md' | xargs perl tools/autodoc.pl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}