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
Currently our documentation isn't available and I think it is because the .github/workflows/sphinx_docs_to_gh_pages.yaml runs on any push to any branch it seems.
We should restrict this to only run on pulls to the main branch.
Switch the following...
on:
push:
# Uncomment if only tagged releases are to have documentation built# tags:# - v*workflow_dispatch: # Uncomment line if you also want to trigger action manually
...to...
on:
pull_requests:
branches:
- mainworkflow_dispatch:
The text was updated successfully, but these errors were encountered:
Currently our documentation isn't available and I think it is because the
.github/workflows/sphinx_docs_to_gh_pages.yaml
runs on anypush
to any branch it seems.We should restrict this to only run on
pulls
to themain
branch.Switch the following...
...to...
The text was updated successfully, but these errors were encountered: