Add missing rich.markup.escape import in tools/ci.py#69395
Closed
dwoz wants to merge 1 commit into
Closed
Conversation
The dependabot-group PRs (saltstack#69391-saltstack#69394) carry a 'Fix rich MarkupError' commit that calls escape() in workflow_config without importing it, breaking Prepare Workflow Run on all four dependabot batch PRs. Land the import on the base branches so dependabot rebases pick up a working tools/ci.py.
This was referenced Jun 8, 2026
Contributor
Author
|
Superseded by direct push to #69393's dependabot branch ( |
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 dependabot-group PRs (#69391, #69392, #69393, #69394) each carry a "Fix rich MarkupError when rendering dependabot PR body" commit that calls
escape()inworkflow_configwithout importing it, so Prepare Workflow Run fails withNameError: name 'escape' is not definedand blocks every downstream job.Landing the proper fix (with
from rich.markup import escape) on the base branches so a@dependabot rebaseon each of those PRs picks up a workingtools/ci.py.Mirrors the earlier fix in a1f56ca ("Fix markup parsing error in tools/ci.py").