From 87bac4c84f9becd38963d2d0832918f215aab3d5 Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong (cubxxw)" <3293172751nss@gmail.com> Date: Fri, 5 Jan 2024 20:48:58 +0800 Subject: [PATCH] update openim environment and status Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> --- .github/workflows/openimci.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/openimci.yml b/.github/workflows/openimci.yml index d376d9840..1cb842c4e 100644 --- a/.github/workflows/openimci.yml +++ b/.github/workflows/openimci.yml @@ -278,4 +278,28 @@ jobs: run: | sudo make init sudo make image - sudo docker images + sudo docker images > docker_build_images.txt + + - name: Check the OpenIM environment and status + run: | + sudo docker images > docker_images.txt + sudo docker ps > docker_containers.txt + + - name: Comment PR + uses: thollander/actions-comment-pull-request@v2 + with: + message: | + ### Docker Build Images: + ``` + ${{ readFile('docker_build_images.txt') }} + ``` + ### Docker Images: + ``` + ${{ readFile('docker_images.txt') }} + ``` + ### Docker Processes: + ``` + ${{ readFile('docker_containers.txt') }} + ``` + GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} + \ No newline at end of file