mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
23 lines
504 B
YAML
23 lines
504 B
YAML
name: VirusTotal Scan
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: [ "Build Revanced APK" ]
|
|
types:
|
|
- completed
|
|
workflow_dispatch: # to trigger manually
|
|
|
|
jobs:
|
|
virustotal:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: VirusTotal Scan
|
|
uses: crazy-max/ghaction-virustotal@v3.1.0
|
|
with:
|
|
vt_api_key: ${{ secrets.VT_API_KEY }}
|
|
update_release_body: true
|
|
github_token: ${{ secrets.GH_TOKEN }}
|
|
request_rate: 4
|
|
files: |
|
|
.apk$
|