diff options
author | 2022-05-29 23:50:14 +0400 | |
---|---|---|
committer | 2022-05-30 00:27:49 +0400 | |
commit | 9934436aa2214082896e99bdf2174642a06c5b61 (patch) | |
tree | 3815fe62cfbc2e183e2a428fe8943e6f2beecdec /docs | |
parent | Pass Branch Name To Docs In CI (diff) |
Include `origin` In Allowed Docs Versions
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index aa9580fe..9aaa8eff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -201,9 +201,9 @@ releases.setup = _releases_setup # -- Options for the multiversion extension ---------------------------------- -# Only include local refs, filter out older versions, and don't build branches other than main +# Filter out older versions, and don't build branches other than main # unless `BUILD_DOCS_FOR_HEAD` env variable is True. -smv_remote_whitelist = None +smv_remote_whitelist = "origin" smv_latest_version = "main" smv_branch_whitelist = "main" |