Code review: minor improvements #476
This file contains hidden or 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: Update Table of Contents | |
| on: | |
| push: | |
| jobs: | |
| update-toc: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Generate Table of Contents | |
| uses: technote-space/toc-generator@v4 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TARGET_PATHS: README.md | |
| TOC_TITLE: "## Table of Contents" | |
| MAX_HEADER_LEVEL: 2 |