Skip to content

Update adultfilter #438

Update adultfilter

Update adultfilter #438

Workflow file for this run

name: Update adultfilter
on:
repository_dispatch:
workflow_dispatch:
push:
paths-ignore:
- '.github/**'
- 'lists/**'
- '*.txt'
- '*.yaml'
- '*.conf'
- '*.txt'
- '*.sh'
- '*.py'
- 'README.md'
schedule:
- cron: '30 10 * * *'
jobs:
build-blocklist:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v3
- name: Build blocklist
uses: actions/checkout@v3
- run: |
chmod +x ./adultfilter-aggregator.sh
./adultfilter-aggregator.sh -o adultfilter.txt
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "adultfilter"
git push