From 83b080c3664e4bc3f9476c0f5939acae1212e08f Mon Sep 17 00:00:00 2001 From: chloeYue Date: Mon, 16 Mar 2026 12:14:06 +0100 Subject: [PATCH] fix: resolve merge-approved-pr action path for cross-repo workflow calls When metamask-mobile calls this reusable workflow, the relative path `./.github/actions/merge-approved-pr` resolves to the calling repo (metamask-mobile) instead of github-tools, causing the workflow to fail. Replace with an absolute ref so the action is always resolved correctly. Made-with: Cursor --- .github/workflows/merge-approved-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge-approved-pr.yml b/.github/workflows/merge-approved-pr.yml index c0e59f27..d9062577 100644 --- a/.github/workflows/merge-approved-pr.yml +++ b/.github/workflows/merge-approved-pr.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Merge approved PR - uses: ./.github/actions/merge-approved-pr + uses: MetaMask/github-tools/.github/actions/merge-approved-pr@v1 with: pr-number: ${{ inputs.pr-number }} required-base-branch: ${{ inputs.required-base-branch }}