Skip to content

Commit 57bdd9f

Browse files
authored
github-actions: exclude bot from the triage (#473)
1 parent a6f0128 commit 57bdd9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
github-user: ${{ github.actor }}
4444
github-token: ${{ steps.get_token.outputs.token }}
4545
- name: Add community and triage labels
46-
if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-renovate-prod[bot]'
46+
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]'
4747
uses: actions/github-script@v7
4848
with:
4949
script: |
@@ -54,7 +54,7 @@ jobs:
5454
labels: ["community", "triage"]
5555
})
5656
- name: Add comment for community PR
57-
if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-renovate-prod[bot]'
57+
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]'
5858
uses: wow-actions/auto-comment@v1
5959
with:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)