schedulers: Fix docs builds for master

To quote the manual, "The branch on which the change occurred.
 Note that ‘trunk’ or ‘master’ is often denoted by None."

so lets add None as well and hope master builds appear properly.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2021-06-16 11:49:53 +01:00
parent f1ecba1b25
commit b03dca02b2

View File

@ -384,7 +384,7 @@ schedulers.append(sched.Nightly(name='nightly-auh', branch='master', properties=
# If any of our sphinx docs branches change, trigger a build
schedulers.append(sched.AnyBranchScheduler(name="yocto-docs-changed",
change_filter=util.ChangeFilter(project=["yocto-docs"], branch=["master", "master-next", "hardknott", "gatesgarth", "dunfell", "transition"]),
change_filter=util.ChangeFilter(project=["yocto-docs"], branch=[None, "master", "master-next", "hardknott", "gatesgarth", "dunfell", "transition"]),
codebases = ['', 'yocto-docs', 'bitbake'],
treeStableTimer=60,
builderNames=["docs"]))