From f6402bf575391bcac1faf1cecc9316121ab2e8b0 Mon Sep 17 00:00:00 2001 From: Marcell Huszti Date: Thu, 20 Jun 2024 10:49:20 +0200 Subject: [PATCH] chore(workflow): add `pull_request_target` as a trigger for pull request --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 228d427..7d1ab5f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -1,6 +1,6 @@ name: Pull request -on: [pull_request] +on: [pull_request, pull_request_target] permissions: checks: write @@ -26,7 +26,7 @@ jobs: - name: Lint run: npm run lint - name: Lint - uses: wearerequired/lint-action@v1.10.0 + uses: wearerequired/lint-action@v2.3.0 with: continue_on_error: false auto_fix: false