-
Notifications
You must be signed in to change notification settings - Fork 47
39 lines (32 loc) · 1.08 KB
/
update.yml
File metadata and controls
39 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 "Vahid.GhaziNour@gmail.com"
git config --global user.name "vAHiD55555"
git remote set-url origin https://github.com/vAHiD55555/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