From c3dbf40dc25b3ae36114326f579f90cc118c599f Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 7 Jan 2025 08:53:16 +0100 Subject: [PATCH] Set Execution Rights for GH-Action: Validate Scripts --- .github/workflows/validate-scripts.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/validate-scripts.yml b/.github/workflows/validate-scripts.yml index 10d6182d..75e32e13 100644 --- a/.github/workflows/validate-scripts.yml +++ b/.github/workflows/validate-scripts.yml @@ -21,6 +21,10 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }} + + - name: Set execute permission for .sh files + run: | + chmod +x ct/*.sh - name: Get changed files id: changed-files