From 655189c35d1980930fa234a2ef8f9c3f23f7e017 Mon Sep 17 00:00:00 2001
From: Claudio Zizza <claudio@budgegeria.de>
Date: Sun, 22 Dec 2024 22:50:04 +0100
Subject: [PATCH] Create website schema validation workflow

---
 .github/workflows/website-schema.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 .github/workflows/website-schema.yml

diff --git a/.github/workflows/website-schema.yml b/.github/workflows/website-schema.yml
new file mode 100644
index 0000000000..e251588e5d
--- /dev/null
+++ b/.github/workflows/website-schema.yml
@@ -0,0 +1,21 @@
+
+name: "Website config validation"
+
+on:
+  pull_request:
+    branches:
+      - "*.x"
+    paths:
+      - ".doctrine-project.json"
+      - ".github/workflows/website-schema.yml"
+  push:
+    branches:
+      - "*.x"
+    paths:
+      - ".doctrine-project.json"
+      - ".github/workflows/website-schema.yml"
+
+jobs:
+  json-validate:
+    name: "Validate JSON schema"
+    uses: "doctrine/.github/.github/workflows/website-schema.yml@7.1.0"