From 4cc90c7784a13a3d101141dc349937763edde51f Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Thu, 22 Oct 2020 07:37:16 +0200 Subject: [PATCH] Fix Linter Errors --- .github/workflows/linter.yml | 1 + entrypoint.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 23329dd..5fc5555 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -14,5 +14,6 @@ jobs: uses: github/super-linter@v3 env: VALIDATE_ALL_CODEBASE: false + VALIDATE_MARKDOWN: false DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/entrypoint.sh b/entrypoint.sh index cfe6823..2f5819f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -29,10 +29,11 @@ _main() { _switch_to_repository() { echo "INPUT_REPOSITORY value: $INPUT_REPOSITORY"; - cd $INPUT_REPOSITORY; + cd "$INPUT_REPOSITORY"; } _git_is_dirty() { + # shellcheck disable=SC2086 [ -n "$(git status -s -- $INPUT_FILE_PATTERN)" ] }