github.com/lestrrat-go/jwx/v2@v2.0.21/.github/workflows/autodoc.yml (about)

     1  name: Auto-Doc
     2  on:
     3    pull_request:
     4      branches:
     5        - develop/v2
     6      types:
     7        - closed
     8  
     9  jobs:
    10    autodoc:
    11      runs-on: ubuntu-latest
    12      name: "Run commands to generate documentation"
    13      if: github.event.pull_request.merged == true
    14      steps:
    15        - name: Checkout repository
    16          uses: actions/checkout@v4
    17        - name: Process markdown files
    18          run: |
    19            find . -name '*.md' | xargs perl tools/autodoc.pl
    20          env:
    21            GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    22