Fix template-field logic timing in BashOperator#70437
Open
bramhanandlingala wants to merge 1 commit into
Open
Conversation
bramhanandlingala
requested review from
amoghrajesh,
ashb,
bugraoz93,
gopidesupavan,
jason810496,
jscheffl and
potiuk
as code owners
July 25, 2026 14:13
shahar1
requested changes
Jul 25, 2026
Contributor
There was a problem hiding this comment.
Hey, I've somehow missed it in #70315 that I've already merged - but it should be clarified:
You must disclose AI usage in the code changes within the PR body according to the guidelines.
I'd like to ask editing the PR body of both your merged PRs ( #68342,
#70315), as well as all of your open PRs to add AI attribution with the PR body - otherwise they will be blocked from merging.
Once this is addressed, I will remove the block. Please do not create new PRs that are gen-AI assisted without disclosure.
This was referenced Jul 25, 2026
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.
Fixes the
standardprovider'sBashOperatorentry from the #70296 exemption-list burn-down.bash_commandis a template field, but__init__classified it as inline-vs-script-file using the raw, un-rendered string — so a templated value could be misclassified before Jinja ever rendered it.execute(), after templating occurs.__init__no longer touchesbash_command's content.BashOperatorfrom the exemption list.bash_commandresolving to a script file.Related to #70296