From ec4cec045b5c7eec2cd97a1e7bdf36e2bf7b6946 Mon Sep 17 00:00:00 2001 From: Olabode Lawal-Shittabey Date: Fri, 23 Jan 2026 16:15:49 +0100 Subject: [PATCH 1/2] Modify schedule for Qdrant cluster ping Updated the schedule to ping the Qdrant cluster on Sundays and Wednesdays. --- .github/workflows/ping-qdrant.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ping-qdrant.yml b/.github/workflows/ping-qdrant.yml index d344ccb9..199154db 100644 --- a/.github/workflows/ping-qdrant.yml +++ b/.github/workflows/ping-qdrant.yml @@ -1,9 +1,11 @@ name: Ping Vector Store (Qdrant) Cluster on: - # Run weekly on Sundays at 2 AM UTC to keep the cluster active schedule: - - cron: "0 2 * * 0" + # Run at 00:00 UTC on Sunday + - cron: '0 0 * * 0' + # Run at 00:00 UTC on Wednesday (approx. 3 days later) + - cron: '0 0 * * 3' # Allow manual triggering for testing workflow_dispatch: From b70a86b13b0ddfc422a68706be5c4941cf77a556 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 16:32:35 +0100 Subject: [PATCH 2/2] chore: apply prettier formatting to ping-qdrant workflow (#276) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Applied code formatting to `.github/workflows/ping-qdrant.yml` to resolve code quality check failures. **Changes:** - Normalized quote style in cron schedule strings from single quotes to double quotes per Prettier configuration - Lines 6 and 8: `'0 0 * * 0'` → `"0 0 * * 0"` and `'0 0 * * 3'` → `"0 0 * * 3"` --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: babblebey <25631971+babblebey@users.noreply.github.com> --- .github/workflows/ping-qdrant.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ping-qdrant.yml b/.github/workflows/ping-qdrant.yml index 199154db..4d89205c 100644 --- a/.github/workflows/ping-qdrant.yml +++ b/.github/workflows/ping-qdrant.yml @@ -3,9 +3,9 @@ name: Ping Vector Store (Qdrant) Cluster on: schedule: # Run at 00:00 UTC on Sunday - - cron: '0 0 * * 0' + - cron: "0 0 * * 0" # Run at 00:00 UTC on Wednesday (approx. 3 days later) - - cron: '0 0 * * 3' + - cron: "0 0 * * 3" # Allow manual triggering for testing workflow_dispatch: