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.
This commit is contained in:
parent
bc515b0cc3
commit
5d7637ca0e
2
.github/workflows/build-artifacts-pr.yml
vendored
2
.github/workflows/build-artifacts-pr.yml
vendored
@ -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:
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user