From 24310c0423aefec97e8063725b4b88ecf6dbf08d Mon Sep 17 00:00:00 2001 From: Reuben Bowlby Date: Sat, 4 Jul 2026 17:58:05 -0400 Subject: [PATCH] fix: checkout governed check tools in reusable workflow Checks out hummbl-dev/.github into a tool path before running the shared governed_pr_check.py script from reusable workflow callers. --- .github/workflows/governed-pr-check.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/governed-pr-check.yml b/.github/workflows/governed-pr-check.yml index df01247..b87c9c0 100644 --- a/.github/workflows/governed-pr-check.yml +++ b/.github/workflows/governed-pr-check.yml @@ -23,9 +23,11 @@ jobs: governed-pr-check: runs-on: ubuntu-latest steps: - - name: Checkout + - name: Checkout governed check tools uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 with: + repository: hummbl-dev/.github + path: governed-pr-check-tools persist-credentials: false - name: Write PR body @@ -44,7 +46,7 @@ jobs: - name: Run governed PR check run: | - python3 .github/scripts/governed_pr_check.py \ + python3 governed-pr-check-tools/.github/scripts/governed_pr_check.py \ --body-file pr-body.md \ --files-json pr-files.json \ --markdown-output governed-pr-check.md \