-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TASK] Unify confval names in ctrl section #982
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Personally, I find the mix of lowercase (name, type) and uppercase (Path, Scope) irritating. Is there a rule?
yes: there are defined properties (type, name, noindex, .. those are in lowercase. All properties that are not predefined are used as labels and will be printed exactly the way they are written https://sphinx-toolbox.readthedocs.io/en/stable/extensions/confval.html |
releases: main, 12.4, 11.5
The backport to
stderr
stdout
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-11.5 11.5
# Navigate to the new working tree
cd .worktrees/backport-11.5
# Create a new branch
git switch --create backport-982-to-11.5
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick 21e2e86015153fa8a52e9d10196da4535ca86dda
# Push it to GitHub
git push --set-upstream origin backport-982-to-11.5
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-11.5 Then, create a pull request where the |
releases: main, 12.4, 11.5
depends on #981