python V2rayCollector Script #5929
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: python V2rayCollector Script | |
on: | |
schedule: | |
- cron: '*/60 * * * *' | |
workflow_dispatch: | |
jobs: | |
run_script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Configure Git | |
run: | | |
git config --global user.email "vip.mahditaheri@gmail.com" | |
git config --global user.name "MhdiTaheri" | |
git remote set-url origin https://github.com/MhdiTaheri/V2rayCollector-py.git | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install requests | |
python -m pip install beautifulsoup4 | |
- name: Run Python script | |
run: | | |
python main.py # Replace with your script's path | |
git add -A | |
git commit -m "The servers have been updated✔ - $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M:%S')" | |
git pull --rebase origin main | |
git push |