-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yaml
33 lines (33 loc) · 960 Bytes
/
action.yaml
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
name: "Mondoo Policy Action"
description: "A GitHub Action to add Mondoo policies on Mondoo Platform."
branding:
icon: "shield"
color: "purple"
inputs:
log-level:
description: >-
Sets the log level: error, warn, info, debug, trace (default "info")
default: info
required: false
output:
description: >-
Set the output format for scan results: compact, yaml, json, junit, csv, summary, full, report (default "compact")
default: compact
required: false
path:
description: Path to the policy file.
required: true
service-account-credentials:
description: "Base64 encoded service account credentials used to authenticate with Mondoo Platform"
required: false
runs:
using: "docker"
image: "docker://mondoo/cnspec:7"
args:
- bundle
- upload
- ${{ inputs.path }}
- --log-level
- ${{ inputs.log-level }}
env:
MONDOO_CONFIG_BASE64: ${{ inputs.service-account-credentials }}