Run ActivityBot #469
This file contains hidden or 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: Run ActivityBot | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Run daily at midnight UTC | |
| workflow_dispatch: # Allow manual trigger | |
| permissions: | |
| contents: write # This gives write permission to the repository contents | |
| jobs: | |
| run-bot: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| if [ -f requirements.txt ]; then pip install -r requirements.txt; else pip install requests pytz; fi | |
| - name: Run ActivityBot | |
| env: | |
| BOT_USERNAME: ${{ secrets.BOT_USERNAME }} | |
| BOT_PASSWORD: ${{ secrets.BOT_PASSWORD }} | |
| run: python InactivityBot.py | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| - name: Commit and push changes | |
| run: | | |
| # Add each file only if it exists | |
| for file in warned_users.json reported_users.json activity_bot.log; do | |
| if [ -f "$file" ]; then | |
| git add "$file" | |
| file_changed=true | |
| fi | |
| done | |
| # Only commit if at least one file was changed | |
| if [ "$file_changed" = true ]; then | |
| git commit -m "Update bot data files [skip ci]" || echo "No changes to commit" | |
| git push | |
| else | |
| echo "No files to commit" | |
| fi |