Update nextdns-lists.py #732
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: Scheduled | |
on: | |
schedule: | |
- cron: '0 19 * * *' # BST 01:00 (GMT+6) | |
push: | |
paths: | |
- '.github/workflows/scheduled.yml' | |
- '.github/workflows/scripts/nextdns-lists.py' | |
pull_request: | |
paths: | |
- '.github/workflows/scheduled.yml' | |
- '.github/workflows/scripts/nextdns-lists.py' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
start: | |
runs-on: ubuntu-latest | |
env: | |
python: '3.13' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ env.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.python }} | |
- name: Generate NextDNS Recommended Blocklists | |
run: python3 .github/workflows/scripts/nextdns-lists.py | |
- name: Update Other Blocklists | |
run: echo 'python3 .github/workflows/scheduled/update_lists.py' | |
- name: Commit changes | |
run: | | |
git config --local user.email '[email protected]' | |
git config --local user.name 'touhidurrr' | |
git add filterlists | |
git commit -m 'Updated Lists [Automated]' | |
git push |