From 144703ba25cc10fcf760cb948d9066dcd0084f38 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Thu, 10 Sep 2026 21:36:18 -0400 Subject: [PATCH] ci(lint): remove explicit ref from checkout step Remove the 'ref' property from the checkout action to allow the workflow to use the default checkout behavior. This ensures the correct commit is used for both push and pull request events. --- .github/workflows/lint.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3c0c2fd..b9b51d2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,8 +11,6 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v7 - with: - ref: ${{ github.head_ref }} - name: Setup PHP uses: shivammathur/setup-php@v2