-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
39 lines (39 loc) · 948 Bytes
/
action.yml
File metadata and controls
39 lines (39 loc) · 948 Bytes
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
36
37
38
39
name: "OLM Annotation Lint"
description: "Validate OLM annotations on Kubernetes resources"
inputs:
path:
description: "Path or comma-separated paths to scan"
required: false
default: "."
exclude:
description: "Comma-separated paths to exclude"
required: false
default: ""
strict:
description: "Treat warnings as errors"
required: false
default: "false"
allow:
description: "Comma-separated annotation keys to allow (bypass unknown annotation errors)"
required: false
default: ""
format:
description: "Output format: text, json, github"
required: false
default: "github"
runs:
using: docker
image: Dockerfile
args:
- "--path"
- ${{ inputs.path }}
- "--exclude"
- ${{ inputs.exclude }}
- "--strict=${{ inputs.strict }}"
- "--allow"
- ${{ inputs.allow }}
- "--format"
- ${{ inputs.format }}
branding:
icon: check-circle
color: orange