Trying to figure out how to run in Visual Studio locally #3
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: Generate Table of Contents | |
on: | |
push: | |
paths: | |
- README.md | |
workflow_dispatch: | |
jobs: | |
toc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: TOC Generator | |
uses: technote-space/toc-generator@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
toc_max_depth: 3 | |
toc_min_depth: 2 | |
toc_title: "## Table of Contents" |