docs: extract mkdocs deps to requirements.txt and validate build on PRs#99
Merged
Conversation
Contributor
|
thanks! that's helpful 🙃 |
eleboucher
pushed a commit
to eleboucher/homelab
that referenced
this pull request
Jun 23, 2026
…1240) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [github:postfinance/topf](https://github.com/postfinance/topf) | patch | `0.4.1` → `0.4.2` | --- ### Release Notes <details> <summary>postfinance/topf (github:postfinance/topf)</summary> ### [`v0.4.2`](https://github.com/postfinance/topf/releases/tag/v0.4.2) [Compare Source](postfinance/topf@v0.4.1...v0.4.2) #### \[0.4.2] - 2026-06-22 ##### Features - Concurrent upgrade/apply with --max-parallel=... flag ([c0bebc7](postfinance/topf@c0bebc7)) ##### Documentation - Fixed typo 'you cluster' to 'your cluster' in documentation ([66f0e32](postfinance/topf@66f0e32)) - Improve README.md and getting-started example ([df22bb6](postfinance/topf@df22bb6)) - Extract mkdocs deps to requirements.txt and validate build on PRs ([#​99](postfinance/topf#99)) ([6c4328d](postfinance/topf@6c4328d)) ##### Miscellaneous - Update changelog ([c85d2f1](postfinance/topf@c85d2f1)) ##### Build - **gh-actions**: Pin gh actions ([af6fbfb](postfinance/topf@af6fbfb)) - **deps**: Bump golangci/golangci-lint-action ([#​97](postfinance/topf#97)) ([589b417](postfinance/topf@589b417)) - **deps**: Bump actions/checkout from 6.0.3 to 7.0.0 ([#​98](postfinance/topf#98)) ([2b2ac2c](postfinance/topf@2b2ac2c)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvcGF0Y2giXX0=--> Reviewed-on: https://git.erwanleboucher.dev/eleboucher/homelab/pulls/1240
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The documentation dependencies (
mkdocs-material,mdx-truly-sane-lists,mike) were hardcoded in thedocs.ymlworkflow, with nothing to install them locally. This PR moves them intodocs/requirements.txtand points the workflow at it, so CI and local setups share a single source of truth.It also adds a
pull_requesttrigger filtered ondocs/**,mkdocs.ymland the workflow, along with amkdocs build --strictstep, so a broken docs build gets caught at PR time rather than after merge. Themike deploysteps now sit behindif: github.ref == 'refs/heads/main', which keeps deployment onmainwhile letting PRs run the build without publishing anything.Finally, it enables
content.code.copyinmkdocs.yml. The code blocks had no copy button, which made commands awkward to select by hand and prone to picking up stray characters.