-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaction.yml
More file actions
20 lines (20 loc) · 745 Bytes
/
action.yml
File metadata and controls
20 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: 'Validate JSON with Glob'
description: 'GitHub Action: Validate JSON'
author: 'Noah Halstead'
inputs:
schema:
description: 'Relative file path under the repository of a JSON schema file to validate the other JSON files with.'
required: false
default: './schema.json'
jsons:
description: 'One or more relative file paths under the repository (separated by comma) of the JSON files to validate with the schema provided.'
required: true
outputs:
invalid:
description: 'One or more of relative file paths of the invalid JSON files, found in the repository (separated by comma).'
runs:
using: 'docker'
image: 'docker://ghcr.io/nhalstead/validate-json-action:v0.1.10'
branding:
icon: 'check'
color: purple