potiuk commented on code in PR #28954:
URL: https://github.com/apache/airflow/pull/28954#discussion_r1070699171


##########
dev/prepare_release_issue.py:
##########
@@ -289,6 +289,9 @@ def generate_issue_content(
                     console.print(f"[red]The PR #{pr_number} could not be 
found[/]")
                     continue
 
+            if pr.user.login == "dependabot":
+                console.print(f"[yellow]Skipping PR #{pr_number} as it was 
created by dependabot[/]")
+                continue
             # Ignore doc-only and skipped PRs
             label_names = [label.name for label in pr.labels]
             if "type:doc-only" in label_names or "changelog:skip" in 
label_names:

Review Comment:
   Might be a good idea. It's not too often. You can also remove specific PR 
with ``--excluded-pr-list`` (which I often did after looking at some generated  
issue report) -  but removing some of them manually based on type/area is a 
good idea.



-- 
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