From 629bd694cdb22da1bb37ef7886b440f4d9a16be9 Mon Sep 17 00:00:00 2001 From: Anwar Hossain Date: Fri, 8 May 2026 09:48:52 +0000 Subject: [PATCH] chore: migrate hardcoded runner labels to ${{ vars.RUNNER_TYPE }} Replaces ubuntu-latest / ubuntu-24.04 with the org-standard ${{ vars.RUNNER_TYPE }} variable. --- .github/workflows/check-schemas.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-schemas.yml b/.github/workflows/check-schemas.yml index 41c5d0e..1da82c9 100644 --- a/.github/workflows/check-schemas.yml +++ b/.github/workflows/check-schemas.yml @@ -6,7 +6,7 @@ on: jobs: check-schemas: - runs-on: ubuntu-latest + runs-on: ${{ vars.RUNNER_TYPE }} permissions: contents: read pull-requests: write