From 896beb0c99a87eb8b80c536f2d5a517aa846989d Mon Sep 17 00:00:00 2001 From: rtBot <43742164+rtBot@users.noreply.github.com> Date: Thu, 13 Aug 2026 14:48:56 +0530 Subject: [PATCH] Run Copilot code review on GitHub-hosted runners --- .github/workflows/copilot-code-review.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/copilot-code-review.yml diff --git a/.github/workflows/copilot-code-review.yml b/.github/workflows/copilot-code-review.yml new file mode 100644 index 0000000..558539a --- /dev/null +++ b/.github/workflows/copilot-code-review.yml @@ -0,0 +1,22 @@ +name: Copilot code review setup steps + +on: + workflow_dispatch: + push: + paths: + - .github/workflows/copilot-code-review.yml + pull_request: + paths: + - .github/workflows/copilot-code-review.yml + +jobs: + # The job must be named `copilot-setup-steps`, or Copilot ignores this file. + copilot-setup-steps: + runs-on: ubuntu-latest + + permissions: + contents: read + + steps: + - name: Start Review + run: echo "Starting Review."