From 1ea66492b51be1146f7a9fba570c3dff2890c03f Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Thu, 9 Jan 2025 08:28:13 -0800 Subject: [PATCH] chore(labeler): don't label PRs from our renovate bot as a community PR E.g. note how https://github.com/elastic/apm-agent-nodejs/pull/4402 was so labeled and should not have been. --- .github/workflows/labeler.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index dc563904df..f339b4d31c 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -33,7 +33,10 @@ jobs: github-token: ${{ steps.get_token.outputs.token }} - name: Add community and triage labels - if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-observability-automation[bot]' + if: contains(steps.is_elastic_member.outputs.result, 'false') && + github.actor != 'dependabot[bot]' && + github.actor != 'elastic-renovate-prod[bot]' && + github.actor != 'elastic-observability-automation[bot]' uses: actions/github-script@v7 with: script: |