Skip to content

Bump version

Bump version #175

Workflow file for this run

name: "Scan Virus"
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
types:
- "edited"
- "opened"
- "reopened"
- "synchronize"
workflow_dispatch:
inputs:
git_integrate:
type: "choice"
description: "{Boolean} Whether to integrate with Git to perform scan by the commits."
required: false
default: "False"
options:
- "False"
- "True"
git_limit:
type: "string"
description: "{UInt} Limit on how many Git commits will scan."
required: false
default: "0"
git_reverse:
type: "choice"
description: "{Boolean} Whether to reverse the scan order of the Git commits."
required: false
default: "False"
options:
- "False"
- "True"
jobs:
main:
name: "Main"
uses: "hugoalh/hugoalh/.github/workflows/scan-virus.yml@main"

Check failure on line 40 in .github/workflows/scan-virus.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/scan-virus.yml

Invalid workflow file

error parsing called workflow ".github/workflows/scan-virus.yml" -> "hugoalh/hugoalh/.github/workflows/scan-virus.yml@main" (source branch with sha:18f4edfbd79da8454465e1022c98169d56a0b22c) : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
git_integrate: "${{github.event.inputs.git_integrate || 'False'}}"
git_limit: "${{github.event.inputs.git_limit || '0'}}"
git_reverse: "${{github.event.inputs.git_reverse || 'False'}}"