Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/notify-search-engines.yml
Original file line number Diff line number Diff line change
@@ -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

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'Notify Search Engines' step
Uses Step
uses 'robingenz/google-indexing-action' with ref 'v1.0.2', not a pinned commit hash
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

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'Notify Search Engines' step
Uses Step
uses 'bojieyang/indexnow-action' with ref 'v2.1.0', not a pinned commit hash
with:
sitemap-location: 'https://docs.falkordb.com/sitemap.xml'
key: ${{ secrets.INDEXNOW_KEY }}
Loading