this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

GitHub Action running markdown-toc, refs #48

+27 -1
+25
.github/workflows/readme-toc.yml
··· 1 + name: Update README table of contents 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + - master 8 + paths: 9 + - README.md 10 + 11 + jobs: 12 + build: 13 + runs-on: ubuntu-latest 14 + steps: 15 + - name: Check out repo 16 + uses: actions/checkout@v2 17 + - name: Update TOC 18 + run: npx markdown-toc README.md -i 19 + - name: Commit and push if README changed 20 + run: |- 21 + git diff 22 + git config --global user.email "readme-bot@example.com" 23 + git config --global user.name "README-bot" 24 + git diff --quiet || (git add README.md && git commit -m "Updated README") 25 + git push
+2 -1
.gitignore
··· 1 1 .venv 2 + .DS_Store 2 3 __pycache__/ 3 4 *.py[cod] 4 5 *$py.class 5 6 venv 6 7 .eggs 7 8 .pytest_cache 8 - *.egg-info 9 + *.egg-info