From 303f2ed71ace0bb86ae35ed9fb639fe6a45fd986 Mon Sep 17 00:00:00 2001 From: Michael Muyakwa <34812005+mmuyakwa@users.noreply.github.com> Date: Sun, 7 Jul 2024 01:09:34 +0200 Subject: [PATCH] chore: Remove shellcheck workflow --- .github/workflows/shellcheck.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/shellcheck.yml diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml deleted file mode 100644 index 7bd6bc7..0000000 --- a/.github/workflows/shellcheck.yml +++ /dev/null @@ -1,18 +0,0 @@ -on: - - push - - pull_request - -# Cancels all previous workflow runs for the same branch that have not yet completed. -concurrency: - # The concurrency group contains the workflow name and the branch name. - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - shellcheck: - stage: linting - image: registry.gitlab.com/pipeline-components/shellcheck:latest - script: - - | - find . -name .git -type d -prune -o -type f -name \*.sh -print0 | - xargs -0 -r -n1 shellcheck