From c6a490a014931fa7026926caba784f0ee9ea4b51 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 20 Aug 2026 16:16:07 +0000 Subject: [PATCH] Run JSON schema checks on pull requests Fork PRs never triggered Check JSON Schemas because the workflow only listened for push events on balancer/metadata. Add pull_request so required status checks can report on external contributor PRs. Co-authored-by: ZeKraken --- .github/workflows/check-json-schemas.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-json-schemas.yml b/.github/workflows/check-json-schemas.yml index b2467d2..beab690 100644 --- a/.github/workflows/check-json-schemas.yml +++ b/.github/workflows/check-json-schemas.yml @@ -1,5 +1,7 @@ name: Check JSON Schemas -on: [push] +on: + push: + pull_request: jobs: Check-JSON-Schemas: