include an extra attribute in the trace log for debugging #288
Workflow file for this run
This file contains 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: Auto-Doc | |
on: | |
pull_request: | |
branches: | |
- develop/v2 | |
- develop/v3 | |
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Process markdown files | |
run: | | |
find . -name '*.md' | xargs perl tools/autodoc.pl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |