Skip to content

Build NSFW Blocklist #8

Build NSFW Blocklist

Build NSFW Blocklist #8

Workflow file for this run

name: Build NSFW Blocklist
run-name: Build NSFW Blocklist
on:
workflow_dispatch:
workflow_call:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: build_nsfw.sh
run: bash functions/build_nsfw.sh
- name: Push
run: |
git config user.email ${{ vars.GIT_EMAIL }}
git config user.name ${{ vars.GIT_USERNAME }}
git add .
git diff-index --quiet HEAD || git commit -m "Build NSFW Blocklist"
git push -q