-
Notifications
You must be signed in to change notification settings - Fork 119
60 lines (53 loc) · 1.94 KB
/
main.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Daily Update Tracker
on:
push:
branches:
- main
schedule:
- cron: '0 12 * * *'
env:
innoextract_version: 1.9
arch: amd64
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Update trackers_all.txt
shell: pwsh
run: |
curl https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt >> trackers_all.txt
curl https://raw.githubusercontent.com/XIU2/TrackersListCollection/master/all.txt >> trackers_all.txt
curl https://raw.githubusercontent.com/chenjia404/CnTrackersList/master/all.txt >> trackers_all.txt
curl https://raw.githubusercontent.com/hezhijie0327/Trackerslist/main/trackerslist_tracker.txt >> trackers_all.txt
sort trackers_all.txt | uniq > tmp.txt
mv tmp.txt trackers_all.txt
- name: Test tracker availability
shell: bash
run: |
> trackers_best.txt
while IFS= read -r tracker; do
if [[ "$tracker" == http* ]]; then
# Check HTTP/HTTPS tracker
if curl --connect-timeout 10 --max-time 10 -sI "$tracker" | grep -q "HTTP/"; then
echo "$tracker" >> trackers_best.txt
fi
elif [[ "$tracker" == udp* ]]; then
# Check UDP tracker
tracker_url=$(echo "$tracker" | sed 's/udp:\/\///')
if echo -n '' | nc -w 3 -u "${tracker_url%%:*}" "${tracker_url##*:}"; then
echo "$tracker" >> trackers_best.txt
fi
fi
done < trackers_all.txt
- name: Commit and Push changes
run: |
echo $(date +'%Y%m%d') > date.txt
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -am "$(date +'%Y%m%d')"
git push -v --progress