Scheduled production Vercel lambda warm-up #72714
This file contains 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: Scheduled production Vercel lambda warm-up | |
on: | |
schedule: | |
- cron: "*/3 * * * *" ## Every 3 minutes | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
warm_up_production_site: | |
name: Warm up Vercel lambdas | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./.github/actions/warm-up-vercel | |
with: | |
deployment-base-url: "https://app.hash.ai" |