From 99144e8ea24a3889c2371a17bf3c4f1141ef1d17 Mon Sep 17 00:00:00 2001 From: iGabyTM Date: Mon, 24 Jun 2024 19:07:48 +0300 Subject: [PATCH] feat: check only new code --- .github/workflows/lint.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a733b9d..b3c774a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,7 +27,8 @@ jobs: - name: Super-linter uses: super-linter/super-linter@v5.7.2 # x-release-please-version env: - DEFAULT_BRANCH: main - #EDITORCONFIG_FILE_NAME: .editorconfig # To report GitHub Actions status checks - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Will parse the entire repository and find all files to validate across all types. + # NOTE: When set to false, only new or edited files will be parsed for validation. + VALIDATE_ALL_CODEBASE: false \ No newline at end of file