From dd257301dd1b400ce06f8f19793ad17690677d35 Mon Sep 17 00:00:00 2001 From: Mark Allen Date: Sat, 28 Mar 2026 12:45:22 +0000 Subject: [PATCH] ci: add Copilot setup steps workflow Configure the development environment for GitHub Copilot coding agent with Ruby and bundled dependencies. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/copilot-setup-steps.yml | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/copilot-setup-steps.yml diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml new file mode 100644 index 0000000..1928104 --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yml @@ -0,0 +1,27 @@ +name: "Copilot Setup Steps" + +on: + workflow_dispatch: + push: + paths: + - .github/workflows/copilot-setup-steps.yml + pull_request: + paths: + - .github/workflows/copilot-setup-steps.yml + +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + + permissions: + contents: read + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.4' + bundler-cache: true