⬆️ Bump django from 4.2.10 to 4.2.16 in /training #503
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: Directory Tree Generator | |
on: | |
pull_request: | |
branches: | |
- 'nextjs' | |
jobs: | |
generate-directory-tree: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate File Tree | |
run: | | |
pip install regex | |
python ./file_tree_generator.py | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: ":art: Auto-generated directory tree for repository in Architecture.md" | |
commit_options: '--no-verify' | |
commit_user_name: github-actions | |
commit_user_email: [email protected] |