Skip to content

Commit

Permalink
Implement VirusTotal - Malicious Link Checker gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
arddluma committed Jan 15, 2024
1 parent e36fc7f commit 70422dd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/virustotal-linkchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Malicious Link Checker

on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'

jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Run VirusTotal Link Checker
uses: arddluma/[email protected]
with:
virustotal-api-key: ${{ secrets.VIRUS_TOTAL_API_KEY }}
filename: 'README.md'
malicious_threshold: 1
suspicious_threshold: 1

0 comments on commit 70422dd

Please sign in to comment.