name: Generate File Tree 🌳 on: push: branches: - main - dev workflow_dispatch: jobs: generate_file_tree: runs-on: ubuntu-latest permissions: contents: write steps: - name: Checkout Repository uses: actions/checkout@v3 with: ref: ${{ github.ref_name }} - name: Set Up Python uses: actions/setup-python@v4 with: python-version: "3.9" - name: Generate File Tree run: python scripts/generate_file_tree.py ../svg ../png ../webp - name: Commit and Push Changes run: | git config --global user.email "noreply@lammers.media" git config --global user.name "Dashboard Icons Bot" git add tree.json git commit -m ":construction_worker: Generate file tree" || exit 0 git pull --rebase origin ${{ github.ref_name }} git push origin HEAD:${{ github.ref_name }}