python V2rayCollector Script #18436
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: 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 "Epodonios@gmail.com" | |
| git config --global user.name "Epodonios" | |
| git remote set-url origin https://github.com/Epodonios/bulk-xray-v2ray-vless-vmess-...-configs.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 |