From 30c4ffb48342a93fb73f58ffb094ac7b9982e663 Mon Sep 17 00:00:00 2001 From: Lework Date: Tue, 4 May 2021 11:46:12 +0800 Subject: [PATCH] feat(ci): Setup script executable --- .github/workflows/linter.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 70e523a..475ca8d 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -41,6 +41,9 @@ jobs: with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 + - name: Setup script executable + run: | + chmod +x *.sh ################################ # Run Linter against code base # @@ -51,4 +54,4 @@ jobs: VALIDATE_ALL_CODEBASE: false ERROR_ON_MISSING_EXEC_BIT: true DEFAULT_BRANCH: master - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}