We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e970796 commit 4deca3eCopy full SHA for 4deca3e
.github/workflows/trackerslist_autoupdate.yml
@@ -0,0 +1,35 @@
1
+name: Trackerslist
2
+
3
+on:
4
+ schedule:
5
+ - cron: "0 8 * * *"
6
7
+jobs:
8
+ trackerslist_autoupdate:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Check out repository
13
+ uses: actions/checkout@v2
14
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: 3.x
19
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install requests
24
25
+ - name: Run script to trackerslist
26
27
+ python trackerslist.py
28
29
+ - name: Commit and push changes
30
31
+ git config --local user.email "[email protected]"
32
+ git config --local user.name "GitHub Actions"
33
+ git add .
34
+ git commit -m "Update trackerslist"
35
+ git push
0 commit comments