You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 21, 2025. It is now read-only.
Adding some form of user-provided rules could allow the docs build process to be selectively run based on the Github branch. I can think of a few rules:
do not build docs if the CI job was triggered by a PR
do not build docs for refactor/*, feature/* type branches
build docs for master, develop, release/* branches
This will prevent the job from being triggered for every branch/commit, and prevent the unnecessary proliferation of docs in the gh-pages branch.
This could be handled outside the app, but would require custom shell scripts for each CI provider. It might just be easier to implement within the app itself.
Adding some form of user-provided rules could allow the docs build process to be selectively run based on the Github branch. I can think of a few rules:
refactor/*,feature/*type branchesmaster,develop,release/*branchesThis will prevent the job from being triggered for every branch/commit, and prevent the unnecessary proliferation of docs in the
gh-pagesbranch.This could be handled outside the app, but would require custom shell scripts for each CI provider. It might just be easier to implement within the app itself.