Skip to content

Detect and Update Repo Structure #427

Detect and Update Repo Structure

Detect and Update Repo Structure #427

name: Detect and Update Repo Structure
on:
schedule:
- cron: '0 * * * *'
workflow_dispatch:
push:
branches:
- main
jobs:
detect-and-update-structure:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- 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_structure.py
- name: Commit and push if changed
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add .
git diff --quiet && git diff --staged --quiet || (
git commit -m "Update repo structure" &&
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/PriyaGhosal/BuddyTrail.git
)