Files
docker-py-revanced/.github/workflows/virus-total-scan.yml
T
Nikhil Badyal d56bc61c8b 👷 Updated CI Job Names
2022-10-03 00:12:32 +05:30

27 lines
614 B
YAML

name: VirusTotal Scan
on:
workflow_run:
workflows: [ "Build Revanced APK" ]
types:
- completed
workflow_dispatch:
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.GH_TOKEN }}
request_rate: 4
files: |
.apk$
env:
HAVE_VT_API_KEY: ${{ secrets.VT_API_KEY != '' }}