Update to sphinx-rtd-theme v2 to fix 404 pages (#851) #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Refresh docs build dependencies" | |
"on": | |
schedule: | |
# Weekly | |
- cron: "0 0 * * 0" | |
workflow_dispatch: | |
inputs: | |
base-branch: | |
required: false | |
type: string | |
pr-branch: | |
required: false | |
type: string | |
reset-branch: | |
type: boolean | |
default: false | |
push: | |
branches: | |
- devel | |
paths: | |
- .github/workflows/reusable-pip-compile.yml | |
- ".github/workflows/pip-compile-docs.yml" | |
- "tests/*.in" | |
jobs: | |
refresh: | |
name: "Refresh docs build dependencies" | |
uses: ./.github/workflows/reusable-pip-compile.yml | |
with: | |
message: "ci: refresh docs build dependencies" | |
base-branch: "${{ inputs.base-branch || 'devel' }}" | |
pr-branch: "${{ inputs.pr-branch || 'pip-compile/devel/docs' }}" | |
nox-args: "-e 'pip-compile-3.10(requirements)' 'pip-compile-3.10(requirements-relaxed)'" | |
reset-branch: "${{ inputs.reset-branch || false }}" | |
secrets: inherit |