Update README.md #23
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 TOC | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
generateTOC: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Generate TOC | |
run: make deps generateTOC | |
- name: Auto commit | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Apply automatic changes - TOC generated | |
branch: master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |