From 50a7eeb58290dcf882eb24e86dbc1f8ad930d014 Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Sun, 26 May 2024 15:01:24 +0900 Subject: [PATCH] CI(GitHub Actions): fix php -l script Summary: Was not calling from the repo rootdir. Fix it. Signed-off-by: Yongmin Hong Test Plan: `arc land`. Wait for GitHub Actions to run. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D149 --- .github/workflows/quicksyntaxcheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quicksyntaxcheck.yml b/.github/workflows/quicksyntaxcheck.yml index b8923c1..1c35c7b 100644 --- a/.github/workflows/quicksyntaxcheck.yml +++ b/.github/workflows/quicksyntaxcheck.yml @@ -13,4 +13,4 @@ jobs: runs-on: ubuntu-latest steps: - name: PHP Basic Syntax Check - run: php -l PhabExt/PhabricatorCustomRobotsTxtController.php + run: php -l {{ $github.workspace }}/PhabExt/PhabricatorCustomRobotsTxtController.php