build_directories.yaml 581 B

12345678910111213141516171819202122232425262728
  1. name: Build directory markdown files
  2. on:
  3. push:
  4. branches:
  5. - master
  6. workflow_dispatch:
  7. jobs:
  8. known_tonies:
  9. runs-on: ubuntu-latest
  10. permissions:
  11. contents: write
  12. steps:
  13. - name: Checkout
  14. uses: actions/checkout@v4
  15. with:
  16. ref: ${{ github.head_ref }}
  17. - name: Build directories
  18. run: ./scripts/build_directories.sh
  19. - name: Commit changes
  20. uses: stefanzweifel/git-auto-commit-action@v5
  21. with:
  22. file_pattern: "*/*.md"
  23. commit_message: Auto update directory markdown files