From 73e173b7d7fac68c14334467b64414d51d8e2ecc Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Sat, 1 Apr 2023 14:37:08 +0200 Subject: [PATCH] project action > removing expression from if --- .github/workflows/project_actions.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/project_actions.yml b/.github/workflows/project_actions.yml index f425b233d4..95e63b564f 100644 --- a/.github/workflows/project_actions.yml +++ b/.github/workflows/project_actions.yml @@ -25,8 +25,8 @@ jobs: name: pr_size_label runs-on: ubuntu-latest if: | - ${{(github.event_name == 'pull_request' && github.event.action == 'assigned') - || (github.event_name == 'pull_request' && github.event.action == 'opened')}} + (github.event_name == 'pull_request' && github.event.action == 'assigned') || + (github.event_name == 'pull_request' && github.event.action == 'opened') steps: - name: Add size label @@ -49,8 +49,8 @@ jobs: name: pr_branch_label runs-on: ubuntu-latest if: | - ${{(github.event_name == 'pull_request' && github.event.action == 'assigned') - || (github.event_name == 'pull_request' && github.event.action == 'opened')}} + (github.event_name == 'pull_request' && github.event.action == 'assigned') || + (github.event_name == 'pull_request' && github.event.action == 'opened') steps: - name: Label PRs - Branch name detection uses: ffittschen/pr-branch-labeler@v1 @@ -61,8 +61,8 @@ jobs: name: pr_globe_label runs-on: ubuntu-latest if: | - ${{(github.event_name == 'pull_request' && github.event.action == 'assigned') - || (github.event_name == 'pull_request' && github.event.action == 'opened')}} + (github.event_name == 'pull_request' && github.event.action == 'assigned') || + (github.event_name == 'pull_request' && github.event.action == 'opened') steps: - name: Label PRs - Globe detection uses: actions/labeler@v4.0.3