Skip to content

Commit

Permalink
Merge pull request #208 from arddluma/main
Browse files Browse the repository at this point in the history
Implement VirusTotal - Malicious Link Checker GitHub action
  • Loading branch information
arddluma authored Apr 15, 2024
2 parents f4b895b + 70422dd commit 1b05cd4
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/gh-action-virustotal-link-checker@v1.0.0
with:
virustotal-api-key: ${{ secrets.VIRUS_TOTAL_API_KEY }}
filename: 'README.md'
malicious_threshold: 1
suspicious_threshold: 1

0 comments on commit 1b05cd4

Please sign in to comment.