From 067df98946f5219525025ef97eaefc9011baed1d Mon Sep 17 00:00:00 2001 From: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com> Date: Tue, 10 Mar 2020 10:47:42 +0800 Subject: [PATCH] Add domains in reject.txt to temp-reject.txt file --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52ade3c0..eadb82fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,10 +88,11 @@ jobs: curl -sSL $GEQ1AN_RULES_REJECT_URL | awk -F ',' '/^(HOST|DOMAIN)(,|\-SUFFIX,).+AdBlock/ {print $2}' >> temp-reject.txt curl -sSL $LHIE1_RULES_REJECT_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+/ {print $2}' >> temp-reject.txt - - name: Add proxy and direct domains from "hidden" branch to appropriate temp files + - name: Add proxy, direct and reject domains from "hidden" branch to appropriate temp files run: | cat proxy.txt >> temp-proxy.txt cat direct.txt >> temp-direct.txt + cat reject.txt >> temp-reject.txt - name: Sort and generate redundant lists run: |