From 7b6c46535c422ddf6e350c7d28c7c5f443a901f7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 06:25:31 +0000 Subject: [PATCH 1/2] Initial plan From 068e90fce7ed0034c63b5b5c5eb8e8823dacfc7f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 06:28:21 +0000 Subject: [PATCH 2/2] Add workflow to notify search engines after pages deployment Co-authored-by: gkorland <753206+gkorland@users.noreply.github.com> --- .github/workflows/notify-search-engines.yml | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/notify-search-engines.yml diff --git a/.github/workflows/notify-search-engines.yml b/.github/workflows/notify-search-engines.yml new file mode 100644 index 00000000..4983fd97 --- /dev/null +++ b/.github/workflows/notify-search-engines.yml @@ -0,0 +1,27 @@ +name: Notify Search Engines + +on: + workflow_run: + workflows: ["pages-build-deployment"] + types: + - completed + +jobs: + notify: + runs-on: ubuntu-latest + permissions: {} + if: ${{ github.event.workflow_run.conclusion == 'success' }} + steps: + # Google Indexing + - name: Notify Google + uses: robingenz/google-indexing-action@v1.0.2 + with: + siteUrl: 'https://docs.falkordb.com' + gcpServiceAccountKey: ${{ secrets.GCP_SERVICE_ACCOUNT_JSON }} + + # Bing + DuckDuckGo + Yandex via IndexNow + - name: Notify Bing (IndexNow) + uses: bojieyang/indexnow-action@v2.1.0 + with: + sitemap-location: 'https://docs.falkordb.com/sitemap.xml' + key: ${{ secrets.INDEXNOW_KEY }}