jedcunningham commented on code in PR #25670:
URL: https://github.com/apache/airflow/pull/25670#discussion_r943633016


##########
dev/airflow-github:
##########
@@ -173,6 +173,9 @@ def is_core_commit(files: List[str]) -> bool:
         for ignore in non_core_files:
             if file.startswith(ignore):
                 break
+            # Handle renaming. Form: {old_name} -> {new_name}
+            elif file.startswith("{") and file[1:].startswith(ignore):

Review Comment:
   We might need to be a little more flexible here. I was thinking we should 
just pop the complete "old" and "new" path into the list of files, then do our 
comparison against that.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to