json-yaml-validate icon indicating copy to clipboard operation
json-yaml-validate copied to clipboard

A GitHub Action to quickly validate JSON and YAML files in a repository

Results 12 json-yaml-validate issues
Sort by recently updated
recently updated
newest added

We've got the following line in `.gitignore`: ```txt !functions/**/local.env ``` This results in the following Syntax error: ```log Run GrantBirki/[email protected] with: github_token: *** mode: fail comment: false base_dir: . use_dot_match:...

Not that important, but sometimes it's nice to have a comment even when all tests have passed, to confirm how many were run without having to check the logs.

enhancement
good first issue

Currently each new failure adds a new comment (I think?), it would be nice to have an option for it to update an existing comment. They offer something similar in...

enhancement
good first issue

Schema ```yml args: - name: type: string required: true description: type: string required: type: boolean type: type: string enum: ["string", "url", "domain", "path", "status", "ip", "list"] ``` yml code ```yml...

# Feature: Support inline schemas It is possible to define a path to a schema in both [json](https://code.visualstudio.com/docs/languages/json#_mapping-in-the-json) and [yaml](https://github.com/redhat-developer/yaml-language-server#using-inlined-schema) files. It would be great if we could pick these...

enhancement

# Feature: Support Multiple Schemas This issue tracks work related to supporting multiple features in this Action. It has been brought to my attention (https://github.com/GrantBirki/json-yaml-validate/issues/6) that users are looking for...

enhancement
help wanted

I'm using following configuration ``` - name: Validate json ${{ inputs.json_configuration }} with schema uses: GrantBirki/json-yaml-validate@3a3d883daf915618a7503a2e9c04b8e57130a4b8 # v3.0.0 with: use_gitignore: false files: | moonstone-configuration.json manifests-configuration.yaml json_schema: moonstone-schema.json ``` When the...

bug

Hello, I'm having a problem with a YAML file that I call flat: ```yaml name: Test author: Me category: YAML ``` And when I try to create my schema I...

Hi! I am trying to use action to verify the API doc file which follows the OpenAPI 3.0.1 schema ([Schema reference](https://github.com/OAI/OpenAPI-Specification/blob/main/schemas/v3.0/schema.json)). ```yaml - name: Verify api-doc.json uses: GrantBirki/[email protected] with: mode:...

Hi! I'm using this validator in a "centralized" solution where we've got [reusable workflows](https://docs.github.com/en/actions/using-workflows/reusing-workflows). In this setup I now want to make it "configurable" by allowing the calling repository to...