From 05efa58f5e0913ff4b7da3666ab5a61fa530e015 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 4 Jul 2024 15:24:37 -0300 Subject: [PATCH] feat: add auto_merge_enabled to pull_request_target types in conventional-labels.yml (#2539) --- .github/workflows/conventional-labels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conventional-labels.yml b/.github/workflows/conventional-labels.yml index 078837451..94022cb21 100644 --- a/.github/workflows/conventional-labels.yml +++ b/.github/workflows/conventional-labels.yml @@ -3,7 +3,7 @@ name: Label PRs with Conventional Commits on: pull_request_target: - types: [ opened, edited , reopened] + types: [ opened, edited , reopened, auto_merge_enabled] jobs: validate-pr: @@ -22,7 +22,7 @@ jobs: needs: validate-pr name: Label PR runs-on: ubuntu-latest - if: ${{ github.event.pull_request.user.type != 'Bot' && needs.validate-pr.outputs.validate_output == 'true' }} + if: ${{ github.event.pull_request.user.type != 'Bot'}} steps: - uses: bcoe/conventional-release-labels@v1 with: