ransomwatch #7087
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ransomwatch | |
on: | |
schedule: | |
- cron: '0 */1 * * *' | |
workflow_dispatch: | |
# to consider: the use of action jobs to breakout each task | |
# https://docs.github.com/en/actions/learn-github-actions/essential-features-of-github-actions#sharing-data-between-jobs | |
jobs: | |
torsocks-job: | |
runs-on: ubuntu-latest | |
timeout-minutes: 110 | |
services: | |
torproxy: | |
image: ghcr.io/joshhighet/torsocc:latest | |
ports: | |
- 9050:9050 | |
steps: | |
- name: checkout the repo | |
uses: actions/checkout@v2 | |
- name: install dependencies | |
run: | | |
pip3 install -r requirements.txt | |
- name: run scraper | |
run: | | |
python3 ransomwatch.py scrape | |
- name: run parser | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
DISCORD_WEBHOOK_2: ${{ secrets.DISCORD_WEBHOOK_2 }} | |
MS_TEAMS_WEBHOOK: ${{ secrets.MS_TEAMS_WEBHOOK }} | |
run: | | |
python3 ransomwatch.py parse | |
- name: generate markdown & graphs for docsify | |
run: | | |
python3 ransomwatch.py markdown | |
- name: generate kv groups for analytics | |
run: | | |
python3 assets/groups-kv.py | |
- name: save changes | |
# git config --global user.email "[email protected]" | |
# git config --global user.name "josh" | |
run: | | |
git config user.name github-actions | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git commit --all --message "πππππππ" || echo "no changes to commit" | |
git push | |
- name: ping c2 beep bop | |
run: | | |
curl -sSf "https://betteruptime.com/api/v1/heartbeat/${{ secrets.HEARTBEAT_SECRET }}" |