From 4180aa496766425263f55e4ffc76cd4554b03a74 Mon Sep 17 00:00:00 2001 From: Alex Szabo Date: Wed, 24 Jul 2024 12:26:19 +0200 Subject: [PATCH] [CI] Trigger the alert-test-failed pipeline on the initial comment (#188909) ## Summary There was an issue, where after @walterra set up the [integration](https://github.com/elastic/kibana-operations/pull/160), and an issue was created (https://github.com/elastic/kibana/issues/188896) there were no notifications sent to the requested channel. The cause is probably the initial, [labeling comment](https://github.com/elastic/kibana/issues/188896#issuecomment-2244327259) PR coming from `elasticmachine`. for more context: https://elastic.slack.com/archives/C5UDAFZQU/p1721715448357519?thread_ts=1721390987.440079&cid=C5UDAFZQU --- .github/workflows/alert-failed-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/alert-failed-test.yml b/.github/workflows/alert-failed-test.yml index 03d46cb65fcfd..92916629d80f3 100644 --- a/.github/workflows/alert-failed-test.yml +++ b/.github/workflows/alert-failed-test.yml @@ -7,7 +7,7 @@ jobs: name: Alert on failed test if: | !github.event.issue.pull_request - && github.event.comment.user.login == 'kibanamachine' + && (github.event.comment.user.login == 'kibanamachine' || github.event.comment.user.login == 'elasticmachine') runs-on: ubuntu-latest steps: - name: Checkout kibana-operations