π Parse Repositories by @thatgaypigeon #24
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: "π Parse Repositories" | |
run-name: "π Parse Repositories by @${{ github.actor }}" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
run: | |
name: "Run fetch-repos.py" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git config | |
run: | | |
git config --global user.name "thatgaypigeon" | |
git config --global user.email "[email protected]" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Run fetch-repos.py | |
run: python ./.github/workflows/scripts/fetch-repos.py | |
env: | |
GH_PAT_TOKEN: ${{ secrets.GH_PAT_TOKEN }} | |
- name: Pre-build commit | |
run: | | |
git add ./_static/searchindex/github.json | |
if git diff --cached --quiet; then | |
echo "No changes to commit" | |
else | |
git commit -m "βοΈ Auto-commit from fetch-repos.py" | |
git remote set-url origin https://${{ secrets.GH_PAT_TOKEN }}@github.com/thatgaypigeon/thatgaypigeon.github.io.git | |
git pull origin main | |
git push | |
fi |