From c468d1227cd8eba71582419e01e15385f2565b67 Mon Sep 17 00:00:00 2001 From: Supper Thomas <78900636@qq.com> Date: Mon, 12 Aug 2024 01:26:37 +0000 Subject: [PATCH] [action] add robot comment when action is fail --- .github/workflows/bsp_buildings.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/bsp_buildings.yml b/.github/workflows/bsp_buildings.yml index a61d086df7..1c02fd6fd2 100644 --- a/.github/workflows/bsp_buildings.yml +++ b/.github/workflows/bsp_buildings.yml @@ -468,3 +468,10 @@ jobs: run: | source ~/.env/env.sh python tools/ci/bsp_buildings.py + + - name: Post failure comment + if: failure() + run: | + curl -X POST -H "Authorization: token ${{ secrets.RTTHREAD_GITHUB_TOKEN }}" \ + -d '{"body":"@${{ github.actor }}, Thank you for your contribution, but there was an error with the action. Could you please help check the BSP compilation issue? Thank you."}' \ + "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments" \ No newline at end of file