Skip to content

Commit f4de87e

Browse files
babblebeyCopilot
andauthored
feat(dev): modify schedule for Qdrant cluster ping (#275)
## Description <!-- Please add PR description (don't leave blank) - example: This PR [adds/removes/fixes/replaces] the [feature/bug/etc] --> This pull request updates the schedule for the `ping-qdrant.yml` GitHub Actions workflow to ensure the Qdrant vector store cluster is pinged more frequently. The workflow now runs twice a week instead of once. Workflow scheduling improvements: * Updated the cron schedule in `.github/workflows/ping-qdrant.yml` to run the workflow at 00:00 UTC on both Sundays and Wednesdays, increasing the frequency from once to twice a week. ## Related Issue <!-- Please prefix the issue number with Fixes/Resolves - example: Fixes #123 or Resolves #123 --> NA ## Screenshots/Screencasts <!-- Please provide screenshots or video recording that demos your changes (especially if it's a visual change) --> NA ## Notes to Reviewer <!-- Please state here if you added a new npm packages, or any extra information that can help reviewer better review you changes --> NA --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: babblebey <25631971+babblebey@users.noreply.github.com>
1 parent dc29927 commit f4de87e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ping-qdrant.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: Ping Vector Store (Qdrant) Cluster
22

33
on:
4-
# Run weekly on Sundays at 2 AM UTC to keep the cluster active
54
schedule:
6-
- cron: "0 2 * * 0"
5+
# Run at 00:00 UTC on Sunday
6+
- cron: "0 0 * * 0"
7+
# Run at 00:00 UTC on Wednesday (approx. 3 days later)
8+
- cron: "0 0 * * 3"
79

810
# Allow manual triggering for testing
911
workflow_dispatch:

0 commit comments

Comments
 (0)