From 4937025fb3c943ae63a998f1ed73a5901be344b4 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Tue, 7 May 2024 09:59:46 +0200 Subject: [PATCH] ci: add canary success message (#12404) --- .github/workflows/canary.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index a291f68d3d8..334a99f80fd 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -90,7 +90,18 @@ jobs: # https://github.com/puppeteer/puppeteer/issues/12379 issue-number: 12379 body: | - Tests with Chrome Canary failed + ❌ Tests with Chrome Canary failed + + --- + [Link](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) + - name: Post comment + uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 + if: ${{ needs.canary-chrome-tests.result == 'success'}} + with: + # https://github.com/puppeteer/puppeteer/issues/12379 + issue-number: 12379 + body: | + ✅ Tests with Chrome Canary succeeded --- [Link](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})