From 69674a17106a4aad92488be221c7e24c8775ffe4 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 27 Jun 2025 20:23:12 +0200 Subject: [PATCH] Make Review Requested label get applied to all opened PRs (#38625) It previously only applied automatically to PRs that have reviews requested, which happens if the PR touches files owned by code owners. Now it applies to *all* opened PRs. --- .github/workflows/labeler-needsreview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labeler-needsreview.yml b/.github/workflows/labeler-needsreview.yml index 819b34b7bb..d3373ce91d 100644 --- a/.github/workflows/labeler-needsreview.yml +++ b/.github/workflows/labeler-needsreview.yml @@ -2,7 +2,7 @@ on: pull_request_target: - types: [review_requested] + types: [review_requested, opened] jobs: add_label: -- 2.51.2