feat: native comments, bug reports, dictionary, type safety (#200) #14
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: Submit URLs to IndexNow | |
| # Run after merge to main (post-deploy) | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| # Only trigger when SEO-relevant files change | |
| - 'pages/**' | |
| - 'components/game/SeoNoscript.vue' | |
| - 'composables/useGameSeo.ts' | |
| - 'data/languages/*/language_config.json' | |
| - 'server/routes/sitemap-main.xml.ts' | |
| - 'public/llms.txt' | |
| # Allow manual trigger | |
| workflow_dispatch: | |
| jobs: | |
| submit: | |
| name: IndexNow Submission | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Submit to IndexNow | |
| run: ./scripts/submit-indexnow.sh | |
| - name: Ping Google sitemap | |
| run: | | |
| echo "Pinging Google with updated sitemap..." | |
| curl -s "https://www.google.com/ping?sitemap=https://wordle.global/sitemap.xml" | |
| echo "" | |
| echo "Pinging Bing with updated sitemap..." | |
| curl -s "https://www.bing.com/ping?sitemap=https://wordle.global/sitemap.xml" | |
| echo "Done." |