forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (53 loc) · 1.53 KB
/
Copy pathshowcase_keep-alive.yml
File metadata and controls
57 lines (53 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# INTERIM — superseded by showcase-harness smoke cadence (see Notion).
#
# Goal: curl /api/health on each showcase service every 5 min so the agent's
# in-memory state (JIT, module cache, connection pools) stays warm. Railway Pro
# tier doesn't sleep containers, but warm-state decays over idle.
#
# This workflow is intentionally minimal — no Slack, no metrics, no state.
# This is strictly keep-alive; alerting lives with the validation/deploy
# workflows.
name: "Showcase: Keep-Alive"
on:
schedule:
- cron: "*/5 * * * *"
workflow_dispatch: {}
permissions:
contents: read
jobs:
ping:
permissions:
contents: read
name: Ping ${{ matrix.slug }}
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
timeout-minutes: 2
continue-on-error: true
strategy:
fail-fast: false
matrix:
slug:
- ag2
- agno
- claude-sdk-python
- claude-sdk-typescript
- crewai-crews
- google-adk
- langgraph-fastapi
- langgraph-python
- langgraph-typescript
- langroid
- llamaindex
- mastra
- ms-agent-dotnet
- ms-agent-harness-dotnet
- ms-agent-python
- pydantic-ai
- spring-ai
- strands
steps:
- name: Ping /api/health
run: |
curl -fsS --max-time 15 \
"https://showcase-${{ matrix.slug }}-production.up.railway.app/api/health" \
> /dev/null