From 1ddafb743759880f0d4772df907df4cf4832818c Mon Sep 17 00:00:00 2001 From: Amylizzle Date: Fri, 9 Feb 2024 21:37:29 +0000 Subject: [PATCH] test2 --- .github/workflows/pr-labeler.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index fd8760b102..7f541ebe42 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -10,15 +10,14 @@ jobs: Label: runs-on: ubuntu-latest steps: + - name: Apply Size Label + if: github.ref != 'refs/heads/master' + uses: pascalgn/size-label-action@v0.5.0 + env: + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - name: Check for Merge Conflicts uses: eps1lon/actions-label-merge-conflict@513a24fc7dca40990863be2935e059e650728400 with: dirtyLabel: "Merge Conflict" repoToken: "${{ secrets.GITHUB_TOKEN }}" commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." - - name: Apply Size Label - if: github.ref != 'refs/heads/master' - uses: pascalgn/size-label-action@v0.5.0 - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" -