-
-
Notifications
You must be signed in to change notification settings - Fork 6
61 lines (50 loc) · 1.69 KB
/
make_domains.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
name: NoAds UPD Domains Only
on:
schedule:
- cron: '55 3 * * *'
push:
paths:
- 'contrib/upd_exclude'
workflow_dispatch:
jobs:
noads_domains:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 1
- name: Sleep Action
uses: juliangruber/sleep-action@v2.0.3
with:
time: 2m
- name: Set Timezone
uses: szenius/set-timezone@v2.0
with:
timezoneLinux: "Europe/Rome"
- name: Set date and time
run: sh ./sh/datetime.sh
- name: Make UPD Domains
run: sh ./sh/make_domains.sh
- name: Prepare vCheck
if: ${{ env.stop == 'false' }}
run: |
num_of_lines=$(grep -v '^! ' "domains/upd_domains.txt" | wc -l)
md5=($(md5sum domains/upd_domains.txt| cut -d ' ' -f 1))
echo $update > vcheck/check_domains.txt
echo $lastmodified >> vcheck/check_domains.txt
echo $checkwebsite >> vcheck/check_domains.txt
echo $num_of_lines >> vcheck/check_domains.txt
echo $md5 >> vcheck/check_domains.txt
- name: Commit UPD Domains
if: ${{ env.stop == 'false' }}
run: |
git config --local user.email "114237374+GWall-bot@users.noreply.github.com"
git config --local user.name "GWall[bot]"
git add domains/upd_domains.txt
git add vcheck/check_domains.txt
git commit -m "Aggiornamento UPD Domains (GHA) $update del $lastmodified" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}