From 044198dc3f919945093fdbe712af0760aea75a59 Mon Sep 17 00:00:00 2001 From: Alex Burns Date: Wed, 20 May 2026 11:36:19 -0400 Subject: [PATCH] Add copilot-setup-steps.yml for full agentic PR reviews Without this file, Copilot Code Review falls back to limited static analysis and shows a warning: 'Copilot was unable to run its full agentic suite in this review.' Adding a minimal setup that checks out the repo gives Copilot the context needed for full reviews. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/copilot-setup-steps.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/copilot-setup-steps.yml diff --git a/.github/copilot-setup-steps.yml b/.github/copilot-setup-steps.yml new file mode 100644 index 00000000..456b5cd8 --- /dev/null +++ b/.github/copilot-setup-steps.yml @@ -0,0 +1,8 @@ +name: "Copilot Setup Steps" +on: workflow_dispatch + +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4