From 45cc7989545267eb2e215d5bf2b37d95b1579a9d Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Tue, 28 Mar 2023 12:47:42 -0500 Subject: [PATCH] Ignore mystery hadolint error There's an unhelpful hadolint error that simply says: > Dockerfile:3 SC1072 error: Fix any mentioned problems and try again. It is unclear what we're supposed to do here, and it could be a false positive because of https://github.com/koalaman/shellcheck/issues/1036 --- .github/workflows/checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0eb867d2..771a89f5 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -43,3 +43,5 @@ jobs: uses: hadolint/hadolint-action@v3.1.0 with: dockerfile: Dockerfile + # Ignore the mystery error. + ignore: SC1072