From 1c1bd81daae8c899bc6598302601a0182b76e870 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 1 Apr 2026 10:29:56 +0200 Subject: [PATCH] ci: send e2e integration results to slack --- .github/workflows/e2e-integration-test.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-integration-test.yml b/.github/workflows/e2e-integration-test.yml index 54ee7c53..3c66f5c8 100644 --- a/.github/workflows/e2e-integration-test.yml +++ b/.github/workflows/e2e-integration-test.yml @@ -60,7 +60,20 @@ jobs: - run: chmod a+x ./lightpanda - name: run end to end integration tests + continue-on-error: true run: | ./lightpanda serve --log-level error & echo $! > LPD.pid - go run integration/main.go + go run integration/main.go |tee result.log kill `cat LPD.pid` + + - name: Send result to slack + uses: slackapi/slack-github-action@v3.0.1 + with: + errors: true + method: files.uploadV2 + token: ${{ secrets.CI_SLACK_BOT_TOKEN }} + payload: | + channel_id: ${{ vars.E2E_SLACK_CHANNEL_ID }} + initial_comment: "Last e2e integration tests" + file: "./result.log" + filename: "e2e-integration-${{ github.sha }}.txt"