From f56e5aa9b3f23586a6461f03c9b290b818d4ca91 Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong (cubxxw)" <3293172751nss@gmail.com> Date: Fri, 5 Jan 2024 21:27:17 +0800 Subject: [PATCH] update openim environment and status Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> --- .github/workflows/openimci.yml | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/.github/workflows/openimci.yml b/.github/workflows/openimci.yml index c1318a0d9..6783ff842 100644 --- a/.github/workflows/openimci.yml +++ b/.github/workflows/openimci.yml @@ -286,20 +286,17 @@ jobs: sudo docker images > docker_images.txt sudo docker ps > docker_containers.txt - - name: Comment PR + - name: Comment Docker Images on 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 }} + ### Docker Images: + ``` + ${{ steps.read_file.outputs.docker_images }} + ``` + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - id: read_file + uses: juliangruber/read-file-action@v1 + with: + path: ./docker_images.txt