Skip to content

Commit

Permalink
Writing history in bytes: Initial commit edition.
Browse files Browse the repository at this point in the history
  • Loading branch information
arddluma committed Jan 15, 2024
1 parent 48a66fb commit 48b5dad
Show file tree
Hide file tree
Showing 6 changed files with 30,360 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
23 changes: 23 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'VirusTotal Link Checker'
description: 'Github Action to check links using VirusTotal API'
author: 'arddluma'
inputs:
virustotal-api-key:
description: 'VirusTotal API Key'
required: true
filename:
description: 'Filename containing links (Default: README.md)'
required: false
malicious_threshold:
description: 'Malicious threshold (Default: 0)'
required: false
suspicious_threshold:
description: 'Suspicious threshold (Default: 0)'
required: false

runs:
using: 'node16'
main: 'dist/action.js'
branding:
icon: 'cloud'
color: 'orange'
Loading

0 comments on commit 48b5dad

Please sign in to comment.