diff --git a/.github/workflows/docs-cron-vercel-deploy.yml b/.github/workflows/docs-cron-vercel-deploy.yml new file mode 100644 index 000000000000..f24379684fcd --- /dev/null +++ b/.github/workflows/docs-cron-vercel-deploy.yml @@ -0,0 +1,13 @@ +name: Docs - update SDK versions + +on: + workflow_dispatch: + schedule: + # At 12:00 on Tuesday https://crontab.guru/#0_12_*_*_2 + - cron: '0 12 * * 2' +jobs: + vercel-deploy: + runs-on: ubuntu-latest + steps: + - name: Run Vercel deploy hook + run: curl -X POST "${{ secrets.VERCEL_SDK_VERSIONS_DEPLOY_HOOKS_URL }}"