From 0fe5be9077e6c745ed2f202db4c1f8e806b71eda 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 b7cec99dfb..03aed9d925 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: