From e94d522abfab0a90bdc9570b7cf3cc2c522e5ab3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 5 Jan 2026 17:18:49 +0000 Subject: [PATCH 1/3] Initial plan From 52fe1238dc4087020de9fe2f7e1097e51700a81b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 5 Jan 2026 17:25:52 +0000 Subject: [PATCH 2/3] Add copilot-setup-steps.yml workflow for GitHub Copilot agent Co-authored-by: romange <3674760+romange@users.noreply.github.com> --- .github/workflows/copilot-setup-steps.yml | 28 +++++++++++++++++++++++ 1 file changed, 28 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 00000000..d244d455 --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yml @@ -0,0 +1,28 @@ +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 repository + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'yarn' + + - name: Install Yarn dependencies + run: yarn install From 156e440225753ed465f3aa6b7587243082c9d06c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 5 Jan 2026 18:52:49 +0000 Subject: [PATCH 3/3] Add Dragonfly Docker container setup to copilot-setup-steps workflow Co-authored-by: romange <3674760+romange@users.noreply.github.com> --- .github/workflows/copilot-setup-steps.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index d244d455..b914e20a 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -26,3 +26,9 @@ jobs: - name: Install Yarn dependencies run: yarn install + + - name: Pull Dragonfly Docker image + run: docker pull docker.dragonflydb.io/dragonflydb/dragonfly + + - name: Run Dragonfly in daemon mode + run: docker run -d --name dragonfly -p 6379:6379 docker.dragonflydb.io/dragonflydb/dragonfly