Skip to content

Obfuscator Monitor

Obfuscator Monitor #2

Workflow file for this run

name: Obfuscator Monitor
on:
schedule:
- cron: '0 0 * * 0' # Weekly
workflow_dispatch: # Manual trigger
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install requests
- name: Run Scraper
run: |
echo "Running scraper..."
python scrape_obfuscators.py
- name: Create Issue
if: ${{ steps.scraper.outputs.new_entries }}
uses: peter-evans/create-issue-from-file@v3
with:
title: "New Obfuscators Found"
content-filepath: ./new_obfuscators.md