AdBlock Filter Compiler #652
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: AdBlock Filter Compiler | |
on: | |
schedule: | |
- cron: '0 18 * * *' # Runs every day at 1 PM EST (6 PM UTC) | |
workflow_dispatch: | |
jobs: | |
generate_adblock_filters: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run filter generator script | |
run: python adblock_filter_compiler.py | |
- name: Commit and push updated filter list | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add blocklist.txt | |
git commit -m "Update filter list" || echo "No changes to commit" | |
git push |