From cef131812c60c2995e9428bd5d6a680084698ccf Mon Sep 17 00:00:00 2001 From: Hugo Pereira Brito <101209179+HugoPBrito@users.noreply.github.com> Date: Mon, 13 Jul 2026 09:06:12 +0100 Subject: [PATCH] fix(ci): correct bot and dependency PR labeling (#11425) --- .github/renovate.json | 4 ++++ .github/workflows/labeler.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 14e1726b71..1cc3d7570b 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -23,6 +23,10 @@ "prConcurrentLimit": 20, "prHourlyLimit": 10, "vulnerabilityAlerts": { + "labels": [ + "dependencies", + "security" + ], "prHourlyLimit": 0, "prConcurrentLimit": 0 }, diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 2281cb3b09..01f5abcebc 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -93,7 +93,7 @@ jobs: fi - name: Add community label - if: steps.check_membership.outputs.is_member == 'false' + if: steps.check_membership.outputs.is_member == 'false' && github.event.pull_request.user.type != 'Bot' env: PR_NUMBER: ${{ github.event.pull_request.number }} GH_TOKEN: ${{ github.token }}