We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f88bb5 commit 0ffd1b8Copy full SHA for 0ffd1b8
.github/workflows/main.yml
@@ -0,0 +1,31 @@
1
+name: Obfuscator Monitor
2
+on:
3
+ schedule:
4
+ - cron: '0 0 * * 0' # Weekly
5
+ workflow_dispatch: # Manual trigger
6
+
7
+jobs:
8
+ scan:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
13
+ - name: Set up Python
14
+ uses: actions/setup-python@v2
15
+ with:
16
+ python-version: '3.x'
17
18
+ - name: Install dependencies
19
+ run: pip install requests
20
21
+ - name: Run Scraper
22
+ run: |
23
+ echo "Running scraper..."
24
+ python scrape_obfuscators.py
25
26
+ - name: Create Issue
27
+ if: ${{ steps.scraper.outputs.new_entries }}
28
+ uses: peter-evans/create-issue-from-file@v3
29
30
+ title: "New Obfuscators Found"
31
+ content-filepath: ./new_obfuscators.md
0 commit comments