From b143a882be1fe07c2df1fa77fed9cdeb3d3fbc05 Mon Sep 17 00:00:00 2001 From: Akis Maziotis Date: Wed, 26 Apr 2023 15:40:45 +0300 Subject: [PATCH] [fix] CI Sentry. running on push events (#23142) * [fix] CI Sentry. running on push events --- .github/workflows/artifacts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 1886775a8e..b313f7367d 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -107,7 +107,8 @@ jobs: sentry: name: Send build info to sentry - if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' + if: > + github.event.workflow_run.event == 'push' runs-on: ubuntu-22.04 env: SENTRY_AUTH_TOKEN: ${{ secrets.MM_SERVER_SENTRY_AUTH_TOKEN }}