From 3a8cc325398f9802dccca8f78cd7672d8873101f Mon Sep 17 00:00:00 2001 From: Claude Sonnet 5 Date: Tue, 11 Aug 2026 02:12:46 +0000 Subject: [PATCH] ci: adopt org runner-policy gate --- .github/workflows/runner-policy.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/runner-policy.yml diff --git a/.github/workflows/runner-policy.yml b/.github/workflows/runner-policy.yml new file mode 100644 index 00000000..65a1c1f1 --- /dev/null +++ b/.github/workflows/runner-policy.yml @@ -0,0 +1,16 @@ +# Copy this file to .github/workflows/runner-policy.yml in every repository. +# +# It is deliberately tiny: all logic lives in the reusable workflow in +# github-policy, so the rule can be changed in one place. After adding it, make +# `runner-policy` a required status check on the repository's protected branch +# — without that it reports but does not block. +name: Runner policy + +on: + pull_request: + push: + branches: [main] + +jobs: + runner-policy: + uses: TheDancingDeveloper-org/github-policy/.github/workflows/runner-policy-reusable.yml@main \ No newline at end of file