From 9b93ac0e932a7874487432e78145f37551f905fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?If=20cli=20is=20a=20gift=20from=20god=2C=20using=20arch=20?= =?UTF-8?q?makes=20us=20prophets=20=E2=80=A0?= <62696671+TheCyberArcher@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:47:06 +0000 Subject: [PATCH] Update generate-blocklist.yml --- .github/workflows/generate-blocklist.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate-blocklist.yml b/.github/workflows/generate-blocklist.yml index dbb272b..84940b8 100644 --- a/.github/workflows/generate-blocklist.yml +++ b/.github/workflows/generate-blocklist.yml @@ -10,11 +10,13 @@ jobs: build: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 - name: directory clean run: | rm -rf ./blocklist/* - - name: Feed recuperation with convert + + - name: Base blocklist generation run: | mkdir -p ./blocklist cd ./blocklist @@ -40,6 +42,13 @@ jobs: cat * >> respect-my-internet.txt curl https://raw.githubusercontent.com/firehol/blocklist-ipsets/refs/heads/master/firehol_level3.netset | sed '/^#/d' >> firehol-lv3.txt + + - name: Extra blocklists generation + + for url in https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/fortnite.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/adobe.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/tiktok.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/whatsapp.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/youtube.txt + do + curl $url | sed '/^#/d' > $(basename $url) + done - name: Configure Git run: |