🎨 Removed virus total

This commit is contained in:
Nikhil Badyal
2025-05-13 15:13:17 +05:30
parent e85dbadd26
commit b03f1a58a6
3 changed files with 0 additions and 51 deletions
-22
View File
@@ -26,11 +26,6 @@ on:
required: false
type: boolean
default: false
VIRUSTOTAL_SCAN:
description: "Scan apks with VirusTotal"
required: false
type: boolean
default: false
CLEANUP:
description: "Clear GitHub(Useful if Telegram upload is enabled)"
required: false
@@ -72,11 +67,6 @@ on:
required: false
type: boolean
default: false
VIRUSTOTAL_SCAN:
description: "Scan apks with VirusTotal"
required: false
type: boolean
default: false
CLEANUP:
description: "Clear GitHub(Useful if Telegram upload is enabled)"
required: false
@@ -147,18 +137,6 @@ jobs:
run: |
sleep 10
virustotal-scan:
needs: [ upload-to-github ]
uses: nikhilbadyal/ghactions/.github/workflows/virustotal-scan.yml@main
with:
FILES: |
.apk$
request_rate: 4
if: inputs.VIRUSTOTAL_SCAN
secrets:
VT_API_KEY: ${{ secrets.VT_API_KEY }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
upload-to-telegram:
needs: [ upload-to-github ]
uses: nikhilbadyal/ghactions/.github/workflows/telegram-uploader.yml@main
-28
View File
@@ -1,28 +0,0 @@
name: VirusTotal Scan
on:
workflow_dispatch:
workflow_call:
secrets:
VT_API_KEY:
required: true
GH_TOKEN:
required: true
jobs:
virustotal:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: VirusTotal Scan
if: ${{ env.HAVE_VT_API_KEY == 'true' }}
uses: nikhilbadyal/ghaction-virustotal@master
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
update_release_body: true
github_token: ${{ secrets.GITHUB_TOKEN }}
request_rate: 4
files: |
.apk$
env:
HAVE_VT_API_KEY: ${{ secrets.VT_API_KEY != '' }}