Skip to content

Commit

Permalink
chore(labeler): don't label PRs from our renovate bot as a community …
Browse files Browse the repository at this point in the history
…PR (#4403)

E.g. note how #4402 was so labeled and should not have been.
  • Loading branch information
trentm authored Jan 9, 2025
1 parent ebfd956 commit e14a25f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit e14a25f

Please sign in to comment.