-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (32 loc) · 1.03 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: 'Run octoscan'
description: 'Run octoscan.'
author: '@hugow'
inputs:
workdir:
description: 'Working directory relative to the root directory.'
default: '.'
### Flags for octoscan ###
filter_triggers:
description: |
Scan workflows with specific triggers (comma separated list: "push,pull_request_target" or pre-configured: external/allnopr)
Default is `external`.
default: 'external'
filter_run:
description: 'Search for expression injection only in run shell scripts.'
default: 'true'
ignore:
descrption: 'Regular expression matching to error messages you want to ignore.'
disable_rules:
description: 'Disable specific rules. Split on ","'
enable_rules:
description: 'Enable specific rules, this will disable all other rules. Split on ","'
outputs:
sarif_output:
description: 'The name of the file containing the sarif output.'
runs:
using: 'docker'
image: 'Dockerfile'
# Ref: https://haya14busa.github.io/github-action-brandings/
branding:
icon: 'target'
color: 'red'