Skip to content

Commit

Permalink
github-actions: exclude bot from the triage (#4342)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v authored Dec 9, 2024
1 parent 054fd3e commit 4d8f0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ 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]'
if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-observability-automation[bot]'
uses: actions/github-script@v7
with:
script: |
Expand Down

0 comments on commit 4d8f0af

Please sign in to comment.