From 50c451f69eb3217189813c0e506c794552b15fc8 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 9 Apr 2025 17:51:05 +0200 Subject: [PATCH] ci: update action directory path in workflow config --- .gitea/workflows/pr.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 8358f67..9b91d2c 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -17,16 +17,10 @@ jobs: - name: Inspect the Action Directory (Debugging) run: | echo "Listing files in action directory:" - ls -l ./ + ls -l /var/run/act/actions/https---git.kjan.de-actions-pull-request-lint@main/ - - name: Set execute permissions (Attempt 1 - Relative Path) - run: chmod +x main.go.out - - - name: Set execute permissions (Attempt 2 - Absolute Path) - run: chmod +x $(pwd)/main.go.out - - - name: Set execute permissions (Attempt 3 - Explicit Path) - run: chmod +x /github/workspace/main.go.out #This is a path commonly used by actions, might work + - name: Set execute permissions (Explicit Path) + run: chmod +x /var/run/act/actions/https---git.kjan.de-actions-pull-request-lint@main/main.go.out - name: Run Pull Request Lint Action uses: https://git.kjan.de/actions/pull-request-lint@main