ai.robots.txt/.github/workflows/daily_update.yml
2024-10-19 13:06:34 +02:00

27 lines
772 B
YAML

name: Daily Update from Dark Visitors
on:
push:
branches:
- "main"
schedule:
- cron: "0 0 * * *"
jobs:
dark-visitors:
runs-on: ubuntu-latest
name: dark-visitors
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- run: |
pip install beautifulsoup4 requests
git config --global user.name "dark-visitors"
git config --global user.email "dark-visitors@users.noreply.github.com"
echo "Running update script ..."
python code/dark_visitors.py
echo "... done."
git --no-pager diff
git add -A
git diff --quiet && git diff --staged --quiet || (git commit -m "Daily update from Dark Visitors" && git push)
shell: bash