From 0106489346d094875cd8ad2790ac3d1dc4e956c8 Mon Sep 17 00:00:00 2001 From: Sagar Khalasi Date: Wed, 15 Jan 2025 12:31:41 +0530 Subject: [PATCH] ci: return true if command fails (#38662) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description > [!TIP] > _Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team)._ > > _Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR._ Fixes #`Issue Number` _or_ Fixes `Issue URL` > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="@tag.Settings" ### :mag: Cypress test results > [!WARNING] > Workflow run: > Commit: 0a2d9705b729c8429e7c79cc52bef0d78a51f390 > Cypress dashboard. > Tags: @tag.Settings > Spec: > It seems like **no tests ran** 😔. We are not able to recognize it, please check workflow here. >
Wed, 15 Jan 2025 07:01:28 UTC ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **Documentation** - Updated description for PR number input parameter in GitHub Actions workflow configuration --- .github/workflows/build-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index d83ff6b8061b..9b554db8ff55 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -113,7 +113,7 @@ jobs: docker image ls --all --no-trunc --format '{{.Repository}},{{.ID}}' \ | grep -v cicontainer \ | cut -d, -f2 \ - | xargs -r docker rmi + | xargs -r docker rmi || true docker save cicontainer -o cicontainer.tar gzip cicontainer.tar