We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7017daf commit 2d7b237Copy full SHA for 2d7b237
.github/workflows/auto_toc_update.yml
@@ -15,11 +15,12 @@ jobs:
15
runs-on: ubuntu-latest
16
timeout-minutes: 5
17
steps:
18
+ - name: Update TOC
19
- uses: actions/checkout@v3
20
- run: |
21
curl https://raw.githubusercontent.com/ekalinin/github-markdown-toc/master/gh-md-toc -o gh-md-toc
22
chmod a+x gh-md-toc
- for file in "**/*.md"; do
23
+ for file in $(find . -type f -name "*.md"); do
24
./gh-md-toc --insert --no-backup --hide-footer --skip-header $file
25
done
26
rm gh-md-toc
0 commit comments