Update lists #703
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: Update lists | |
on: | |
schedule: | |
- cron: '0 0,12 * * *' # At 00:00 and 12:00 (midnight and noon) every day | |
workflow_dispatch: # Manual triggering | |
inputs: | |
run-manual: | |
description: 'Run the script manually' | |
required: false | |
default: 'yes' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo content | |
uses: actions/[email protected] # Checkout the repository content | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.10' # Install the Python version needed | |
- name: Install Python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Execute Python script | |
run: | | |
python update.py | |
- name: Commit list | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add lists/* | |
git commit -m "GitHub Actions" --allow-empty | |
- name: Push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |