-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (72 loc) · 2.39 KB
/
Copy pathcron.yml
File metadata and controls
90 lines (72 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Cron
on:
schedule:
- cron: "*/30 * * * *"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: keep-alive
cancel-in-progress: true
jobs:
ping-production:
name: Ping Turso Production DB
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.13"
cache: "pip"
- name: Install Python dependencies
run: python3 -m pip install -r requirements.txt
- name: Execute keep-alive query
uses: "./.github/actions/keep-alive"
with:
service: turso
url: ${{ secrets.ASTRO_DB_REMOTE_URL }}
token: ${{ secrets.ASTRO_DB_APP_TOKEN }}
ping-preview:
name: Ping Turso Preview DB
runs-on: ubuntu-latest
environment: preview
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.13"
cache: "pip"
- name: Install Python dependencies
run: python3 -m pip install -r requirements.txt
- name: Execute keep-alive query
uses: "./.github/actions/keep-alive"
with:
service: turso
url: ${{ secrets.ASTRO_DB_REMOTE_URL }}
token: ${{ secrets.ASTRO_DB_APP_TOKEN }}
ping-upstash-search:
name: Ping Upstash Search
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.13"
cache: "pip"
- name: Install Python dependencies
run: python3 -m pip install -r requirements.txt
- name: Execute keep-alive read
uses: "./.github/actions/keep-alive"
with:
service: upstash
url: ${{ vars.PUBLIC_UPSTASH_SEARCH_REST_URL }}
token: ${{ vars.PUBLIC_UPSTASH_SEARCH_READONLY_TOKEN }}
index_name: default