A GitHub Action that automatically submits URLs to participating search engines through the IndexNow protocol.
The key file has been obtained from IndexNow and added to your website.
If you don't know how to get the key file, see IndexNow Document.
[!TIP] If your website is stored in a public repository (such as GitHub Pages), saving the Key file directly in the repository will reveal the content and location of this file, which may be a potential security risk. If you want to avoid this, use a solution that dynamically generates key files at deployment time. Please refer to Generate IndexNow Key file during deployment section.
steps:
- uses: bojieyang/indexnow-action@v2 # v2 is the latest major version following the action-versioning.
with:
# The location of your sitemap must start with http(s).
# Currently, XML Sitemap, Sitemap index, RSS and Atom formats are supported.
sitemap-location: 'https://example.com/sitemap.xml'
key: ${{ secrets.INDEXNOW_KEY }} # The key you get from IndexNow.
A complete example used in my blog shows below:
name: 'IndexNow'
on:
schedule:
# Set the schedule time
- cron: '0 2 * * *'
jobs:
check-and-submit:
runs-on: ubuntu-latest
steps:
- name: indexnow-action
uses: bojieyang/indexnow-action@v2
with:
sitemap-location: 'https://bojieyang.github.io/sitemap.xml'
key: ${{ secrets.INDEXNOW_KEY }}
View code from here.
sitemap-location
required
.
The location of sitemap file in your website. Must start with https or http(e.g., https://example.com/sitemap.xml).
key
required
.
The IndexNow key that you get from search engines.
Note DO NOT stored as plaintext in the workflow file. Use GitHub Secrets instead. More about GitHub Secrets, see Encrypted Secrets.
key-location
optional
.
Location of the IndexNow key file that you customed.
If not set, it will assume that there is a file named {your-indexnow-key}.txt
in the root directory of the website(e.g., https://example.com/{your-indexnow-key}.txt).
Note DO NOT stored as plaintext in the workflow file. Use GitHub Secrets instead. More about GitHub Secrets, see Encrypted Secrets.
since
optional
.
URLs with lastmod
fields in sitemap files within the last {since} {since-unit} will be submitted. The default value is 1.
since-unit
optional
.
The unit of since. Available units are minute
, hour
, day
, week
, month
and year
. The default value is day
.
endpoint
optional
.
The endpoint of a special search engine. Available values are api.indexnow.org
, www.bing.com
, search.seznam.cz
and yandex.com
. For more details, see: IndexNow FAQ. The default value is www.bing.com
.
limit
optional
.
The upper limit for submitting URLs. The default value is 100.
timeout
optional
.
The timeout both fetch sitemap and submit to the search engine in milliseconds. The default value is 10000 (10 seconds).
failure-strategy
optional
.
Define the strategy when submit failed. Available strategies are ignore
and error
.
For ignore
, will outputting an notice only.
For error
, outputting an error message also sets the status of action to fail. The default value is ignore
.
Dynamically generating the key file during deployment can avoid the problem of leakage caused by storing the key file in a public repository. Different platforms have their own solutions for dynamically generating files during the deployment process. Here we take GitHub Pages as an example to introduce the corresponding solution.
The specific steps of deploying the plan are as follows:
jobs:
build:
steps:
### ... omit other steps
- name: Setup IndexNow
# Generate files dynamically to prevent them from being leaked in public repositories.
# This example will put the file in the root directory of the site.You may change the location by yourself.
run: echo ${{ secrets.INDEXNOW_KEY }} > ${{ secrets.INDEXNOW_KEY }}.txt
### ... omit other steps
For complete deployment files, see here。
The v2 is the current maintenance version and is based on Node.js v20. It is recommended to use the V2 version whenever possible.
The v1 version is a legacy version and is based on Node.js v16. This version can be used when the Node.js v20 version is not available.
Use lquixada/cross-fetch to polyfill the WHATWG Fetch API.
Use @NaturalIntelligence/fast-xml-parser to parse XML.
Use @iamkun/dayjs to simplify date-related calculations.
Contributions are welcome! Please create an issue and if applicable, a design before proceeding with code.
The scripts and documentation in this project are released under the MIT License