This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new d5ac1b057f Exclude dependedbot PRs from status testing report (#28954)
d5ac1b057f is described below
commit d5ac1b057f96d94062a92d968fe40f4371eb5da0
Author: eladkal <[email protected]>
AuthorDate: Mon Jan 16 01:13:09 2023 +0200
Exclude dependedbot PRs from status testing report (#28954)
---
dev/prepare_release_issue.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dev/prepare_release_issue.py b/dev/prepare_release_issue.py
index 9811d6051e..3009a151a8 100755
--- a/dev/prepare_release_issue.py
+++ b/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: