From 5d7637ca0e7421fd491a2701c07cb1e4a5fa6eb7 Mon Sep 17 00:00:00 2001 From: ColorfulRhino <131405023+ColorfulRhino@users.noreply.github.com> Date: Sat, 8 Jun 2024 12:19:12 +0200 Subject: [PATCH] actions: Don't start build workflow on PR 'reviewer_requested' trigger The PR build workflow does not need to be started every time a single reviwer is added, since requesting a review does not change the build. If the 'Build' label was already added earlier, the build workflow will have been started already. --- .github/workflows/build-artifacts-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-artifacts-pr.yml b/.github/workflows/build-artifacts-pr.yml index b7cec99df..03aed9d92 100644 --- a/.github/workflows/build-artifacts-pr.yml +++ b/.github/workflows/build-artifacts-pr.yml @@ -5,7 +5,7 @@ name: Generate artifacts on PR if 'Build' label exists on: pull_request: - types: [opened, reopened, synchronize, review_requested, labeled] + types: [opened, reopened, synchronize, labeled] jobs: