Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPrab committed Feb 1, 2025
1 parent 0ffd1b8 commit 14030ff
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/obfuscator-monitor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Obfuscator Monitor
on:
schedule:
- cron: '0 0 * * 0' # Weekly
workflow_dispatch: # Manual trigger
- cron: '0 0 * * 0' # Runs every Sunday at 00:00 UTC
workflow_dispatch: # Allows manual triggering

jobs:
scan:
Expand All @@ -19,12 +19,11 @@ jobs:
run: pip install requests

- name: Run Scraper
run: |
echo "Running scraper..."
python scrape_obfuscators.py
id: scraper
run: python scrape_obfuscators.py

- name: Create Issue
if: ${{ steps.scraper.outputs.new_entries }}
if: ${{ steps.scraper.outputs.new_entries == 'true' }}
uses: peter-evans/create-issue-from-file@v3
with:
title: "New Obfuscators Found"
Expand Down

0 comments on commit 14030ff

Please sign in to comment.