Update update-structure.yml #115
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: Detect and Update Repo Structure | |
on: | |
schedule: | |
- cron: '0 * * * *' # Run every hour | |
workflow_dispatch: # Allow manual triggering | |
push: | |
branches: | |
- main | |
jobs: | |
detect-and-update-structure: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install PyGithub | |
- name: Run update script | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: python .github/scripts/update_dir_structure.py | |
- name: Commit and push if changed | |
run: | | |
git config --local user.email "utsavsinghal26@gmail.com" | |
git config --local user.name "UTSAVS26" | |
git add . | |
# Pull the latest changes to avoid conflicts | |
git pull --rebase origin main | |
git diff --quiet && git diff --staged --quiet || (git commit -m "Update repo structure" && git push origin main) |