You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by pd...@apache.org on 2022/08/30 07:18:55 UTC

[age-website] branch v0.6.0 updated: Only use selected branches to build documentation (#52)

This is an automated email from the ASF dual-hosted git repository.

pdpotter pushed a commit to branch v0.6.0
in repository https://gitbox.apache.org/repos/asf/age-website.git


The following commit(s) were added to refs/heads/v0.6.0 by this push:
     new dd18692  Only use selected branches to build documentation (#52)
dd18692 is described below

commit dd1869279a04bf59ffba241ed98fdc25195558db
Author: Pieterjan De Potter <pi...@ugent.be>
AuthorDate: Tue Aug 30 09:16:14 2022 +0200

    Only use selected branches to build documentation (#52)
---
 docs/conf.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index a24aff5..71c43cd 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -76,7 +76,8 @@ html_context = {
 
 # Don't include tags
 smv_tag_whitelist = None
-smv_branch_whitelist = r'^(?!gh-pages).*$'
+# Selected branches: master and branches with semantic versioning preceded by 'v'
+smv_branch_whitelist = r'^(master|v[0-9]+[.][0-9]+[.][0-9]+)$'
 smv_remote_whitelist = r'^.*$'
 smv_released_pattern = r'^remotes/.*$'
 smv_prefer_remote_refs = True