-
-
Notifications
You must be signed in to change notification settings - Fork 14
88 lines (72 loc) · 2.73 KB
/
master.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Sort My Privacy DNS's lists
on:
push:
branches:
- 'master'
# schedule:
# - cron: '10 * * * *'
env:
GIT_NAME: '${{ secrets.GIT_NAME }}'
GIT_EMAIL: '${{ secrets.GIT_EMAIL }}'
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
jobs:
scheduler:
name: Trigger action
runs-on: '${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
python_version:
- '3.11'
os:
- ubuntu-latest
steps:
- uses: actions/checkout@main #Obviously yet another american...
name: Clone repository
with:
token: '${{ secrets.GITHUB_TOKEN }}'
- name: Install requirements
run: |
sudo bash "${{ github.workspace }}/scripts/dependencies.sh"
- name: Install MyPDNS
run: |
pip install --no-cache-dir mypdns
- name: 'Sort our lists for doublets and order by alphabet'
run: |
find "${{ github.workspace }}/source/" -type f -name '*.list' -exec \
bash -c "sort -i -u -f '{}' -o '{}' " \;
# find "${{ github.workspace }}/source/" -type f -name '*.list' -exec \
# awk -F "." '{for(i=NF; i > 1; i--) printf "%s.", $i; print $1}' "{}" | \
# sort -u | awk -F "." '{for(i=NF; i > 1; i--) printf "%s.", $i; print $1}'
- name: 'Sort our rpz-nsdname for doublets and order by alphabet'
run: |
find "${{ github.workspace }}/source/" -type f -name '*.rpz-nsdname' \
-exec bash -c "sort -i -u -f '{}' -o '{}' " \;
- name: 'Combine domain and wildcard domains for external usages'
run: |
cd "${{ github.workspace }}"
find "${{ github.workspace }}/source/" -type f -name 'combined.txt' \
-delete
for d in `find source/ -mindepth 1 -maxdepth 1 -type d`
do
cat ${d[@]}/*.list > ${d[@]}/combined.txt
done
# - name: 'Import latest working example of safe search from safesearch.mypdns.cloud'
# run: |
# rm "${{ github.workspace }}/safesearch/safesearch.mypdns.cloud.rpz"
# drill axfr @axfr.mypdns.cloud -p 5303 safesearch.mypdns.cloud \
# | grep -vE '^($|;)' >> ${{ github.workspace }}/safesearch/safesearch.mypdns.cloud.rpz
- name: Git Status
run: git status
- name: Commit changes
run: |
tag=$(date +'day: %j of year %Y %H:%M:%S')
git config --local user.email "$GIT_EMAIL"
git config --local user.name "$GIT_NAME"
git commit -m "Committed new lists $tag" -a
git pull --rebase
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}