diff --git a/content/changelog.md b/content/changelog.md index 38dc3550b..59ef11f06 100644 --- a/content/changelog.md +++ b/content/changelog.md @@ -6,8 +6,8 @@ #### Feature -- Added capacity planning feature on MTO Console to view resource usage of tenants based in their request and limits. -- Added hibernation feature on MTO Console to view and manage hibernated namespaces and hibernate/unhibernate namespaces. +- Added [capacity planning](./explanation/console.md#capacity-planning) feature on MTO Console to view resource usage of tenants based in their request and limits. +- Added [hibernation](./explanation/console.md#hibernation) feature on MTO Console to view and manage hibernated namespaces and hibernate/unhibernate namespaces. ## v0.12.x diff --git a/prepare_theme_pr.sh b/prepare_theme_pr.sh new file mode 100644 index 000000000..98ea733e8 --- /dev/null +++ b/prepare_theme_pr.sh @@ -0,0 +1,6 @@ +# This script is meant to be used for pull request builds +pip install -r theme_common/requirements.txt +python theme_common/scripts/combine_theme_resources.py -s theme_common/resources -ov theme_override/resources -o dist/_theme +# The next step is used to override resources for pull request builds - these overrides could as well have been put in the local theme_override folder, but this is a generic solution +python theme_common/scripts/combine_theme_resources.py -s theme_common/resources_pr_specific -ov theme_override/resources -o dist/_theme -skiprmtree +python theme_common/scripts/combine_mkdocs_config_yaml.py theme_common/mkdocs.yml theme_override/mkdocs.yml mkdocs.yml