Integrate indexy.dev with Vercel to automatically submit your URLs to Google Search Console whenever you deploy a new version of your site.
If you are on a Vercel Pro or Enterprise plan, you can use the native Webhooks feature.
https://indexy.dev/api/index/YOUR_PROJECT_ID The Vercel Hobby plan does not support outgoing webhooks. However, you can achieve the same result using GitHub Actions by listening to the deployment_status event.
INDEXY_WEBHOOK_URL Create a file named .github/workflows/indexy.yml in your repository with the following content:
name: Trigger indexy.dev
on: [deployment_status]
jobs:
index:
if: github.event.deployment_status.state == 'success'
runs-on: ubuntu-latest
steps:
- name: Trigger Indexing
run: curl -X POST ${{ secrets.INDEXY_WEBHOOK_URL }}Note: This workflow runs whenever a deployment status changes to "success", which Vercel triggers automatically.