From b20befbe310a5691d7f40a7885ebdf9c397b7983 Mon Sep 17 00:00:00 2001 From: Viet Huynh Date: Mon, 18 Sep 2023 13:51:57 +0700 Subject: [PATCH] updated instructions on ALLOWLIST_URLS and BLOCKLIST_URLS --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a12f313..db6e6cb 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,8 @@ Please note that the GitHub Action downloads the recommended blocklists and whit 3. Create the following GitHub Actions variables in your repository settings if you desire: - `FAST_MODE`: Enable the scripts to send the requests simultaneously. Beware that there's a rate limit of 1200 requests per five minutes (https://developers.cloudflare.com/fundamentals/api/reference/limits/) so make sure you know what you are doing. +- `ALLOWLIST_URLS`: Uses your own allowlists. One URL per line. Recommended allowlists will be used if this variable is not provided. +- `BLOCKLIST_URLS`: Uses your own blocklists. One URL per line. Recommended blocklists will be used if this variable is not provided. 4. Create a new file in the repository named `.github/workflows/main.yml` with the contents of `auto_update_github_action.yml` found in this repository. The default settings will update your filters every week at 3 AM UTC. You can change this by editing the `schedule` property. 5. Enable GitHub Actions in your repository settings.