From 77efce611d0bcb071b7b7ec7ffa0a5ca2341c874 Mon Sep 17 00:00:00 2001 From: Jan Hentschel Date: Mon, 9 Dec 2024 22:23:43 +0100 Subject: [PATCH] Fix prettier issues in linting workflow (#41) --- .github/workflows/linter.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index c34508c..903f22f 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -13,10 +13,9 @@ jobs: # If the PR is coming from a fork (pull_request_target), ensure it's opened by "dependabot[bot]". # Otherwise, clone it normally. if: | - (github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') || - (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') + (github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') || + (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') runs-on: ubuntu-22.04 - steps: - name: Checkout if: ${{ github.event_name != 'pull_request_target' }}