NoAds HWS #698
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NoAds HWS | |
on: | |
schedule: | |
- cron: '45 3 * * *' | |
workflow_dispatch: | |
jobs: | |
noads_hws: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- name: Set Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Europe/Rome" | |
- name: Set date and time | |
run: sh ./sh/datetime.sh | |
- name: Prepare list header | |
run: | | |
echo "[Adblock Plus 2.8]" > siteblock.txt | |
echo "! Title: NoAds X Files: HWS Harmful WebSites" >> siteblock.txt | |
echo "! Version:" $update >> siteblock.txt | |
echo "! Harmful WebSites blocca siti web potenzialmente dannosi per la tua navigazione" >> siteblock.txt | |
echo "! Last modified:" $lastmodified >> siteblock.txt | |
echo "! Expires: 2 days" >> siteblock.txt | |
echo "! Homepage: https://xfiles.noads.it" >> siteblock.txt | |
echo "! Blog: https://go.gioxx.org/noads" >> siteblock.txt | |
echo "! Hosting: GitHub.com" >> siteblock.txt | |
echo "!" >> siteblock.txt | |
- name: Make Stable | |
run: sh ./sh/make_hws.sh | |
- name: Prepare vCheck | |
if: ${{ env.stop == 'false' }} | |
run: | | |
num_of_lines=$(grep -v '^! ' "siteblock.txt" | wc -l) | |
md5=($(md5sum siteblock.txt| cut -d ' ' -f 1)) | |
echo $update > vcheck/check_siteblock.txt | |
echo $lastmodified >> vcheck/check_siteblock.txt | |
echo $checkwebsite >> vcheck/check_siteblock.txt | |
echo $num_of_lines >> vcheck/check_siteblock.txt | |
echo $md5 >> vcheck/check_siteblock.txt | |
- name: Commit Stable | |
if: ${{ env.stop == 'false' }} | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GWall[bot]" | |
git add siteblock.txt | |
git add vcheck/check_siteblock.txt | |
git commit -m "Aggiornamento HWS (GHA) $update del $lastmodified" -a | |
- name: Push Stable | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |