From 8dd4ba4bf202b4a5f7bd1543377b3e3075885207 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 29 Mar 2022 11:53:23 -0500 Subject: [PATCH] skip jsonschema in ci --- .pre-commit-config.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b506f9f75a..e62146d136 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,6 @@ +ci: + skip: [check-jsonschema] + repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.1.0 @@ -48,3 +51,12 @@ repos: rev: v8.12.0 hooks: - id: eslint + + - repo: https://github.com/sirosen/check-jsonschema + rev: 0.14.1 + hooks: + - id: check-jsonschema + name: "Check GitHub Workflows" + files: ^\.github/workflows/ + types: [yaml] + args: ["--schemafile", "https://json.schemastore.org/github-workflow"]