We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73b76f commit 0b5562eCopy full SHA for 0b5562e
action.yml
@@ -21,6 +21,9 @@ inputs:
21
description: Enable logging to the selected file
22
required: false
23
type: string
24
+ debug:
25
+ description: Enable debug messages from libclamav
26
+ default: false
27
runs:
28
using: composite
29
steps:
@@ -33,6 +36,7 @@ runs:
33
36
echo TCPSocket ${{ inputs.tcp_port }} >> clamd.conf
34
37
echo StreamMaxLength ${{ inputs.stream_max_length }} >> clamd.conf
35
38
echo LogVerbose ${{ inputs.log_verbose }} >> clamd.conf
39
+ echo Debug ${{ inputs.debug }} >> clamd.conf
40
- name: Add log file if needed
41
if: ${{ inputs.log_file != '' }}
42
shell: bash
0 commit comments