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 4acdaa7 commit 0b03a55Copy full SHA for 0b03a55
.github/workflows/python-trackerlist.yml
@@ -0,0 +1,34 @@
1
+name: Trackerslist
2
+
3
+on:
4
+ schedule:
5
+ - cron: "0 8 * * *"
6
+ workflow_dispatch:
7
8
+jobs:
9
+ trackerslist_autoupdate:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Check out repository
14
+ uses: actions/checkout@v3
15
16
+ - name: Set up Python
17
18
+ with:
19
+ python-version: '3.11'
20
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install requests
25
+ - name: Run script to trackerslist
26
27
+ python trackerslist.py
28
+ - name: Commit and push changes
29
30
+ git config --local user.email "[email protected]"
31
+ git config --local user.name "GitHub Actions"
32
+ git add .
33
+ git commit -m "Update trackerslist"
34
+ git push
0 commit comments