build_directories.yaml 552 B

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