From 02a879f330715af18d594ef0c0b9947654b65ac1 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 25 Jul 2024 17:12:18 -0300 Subject: [PATCH] ci: add labeler job to automatically add 'lgtm' label when pull request review is approved (#2963) * feat(ci.yml): add labeler job to automatically add 'lgtm' label when pull request review is approved * ci(ci.yml): add dependency on labeler job to ensure it runs before the ci job * chore(ci.yml): remove unnecessary condition for labeler job in CI workflow * refactor(ci.yml): remove unnecessary condition for labeler job in CI workflow * refactor(ci.yml): update CI workflow to include labeled pull requests in the trigger conditions --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 525ac5258..2e76377e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,7 @@ on: required: false type: string pull_request: - types: [synchronize] - pull_request_review: - types: [submitted] + types: [synchronize, labeled] concurrency: group: ${{ github.workflow }}-${{ github.ref }}