From 74112211ce4685c27e0999c93f5332dfcecc89e9 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Tue, 5 May 2026 12:36:18 -0500 Subject: [PATCH] [copilot] Restore workflow_dispatch trigger for Copilot coding agent The copilot-setup-steps.yml has always used `on: pull_request` with a paths filter, meaning the Copilot coding agent never had proper setup steps. Restore the `on: workflow_dispatch` trigger so the agent gets the right build environment when assigned to issues. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/copilot-setup-steps.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index f304f359..6e90f640 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -1,6 +1,7 @@ name: Copilot Setup Steps CI on: + workflow_dispatch: pull_request: paths: - '.github/workflows/copilot-setup-steps.yml'