Cron #8959
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |