From d0635c48708d2fe63270dba506ea7372fe369d72 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Wed, 25 Mar 2026 13:04:52 +0000 Subject: [PATCH] fix: make pr_number input optional in dual-approval-check PR #81 adds pr_number as a required input, but the 5 calling plugin repos don't yet pass this input. Change required: true to required: false so the workflow_call can succeed without it, while companion PRs are opened to add the input to each caller. Co-Authored-By: Paperclip --- .github/workflows/dual-approval-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dual-approval-check.yaml b/.github/workflows/dual-approval-check.yaml index 840e8ba..39453c8 100644 --- a/.github/workflows/dual-approval-check.yaml +++ b/.github/workflows/dual-approval-check.yaml @@ -22,7 +22,7 @@ on: inputs: pr_number: description: "Pull request number" - required: true + required: false type: number cto-reviewer: description: "GitHub username of the CTO reviewer"