flowzone: Prevent duplicate workflow executions

Changelog-entry: Prevent duplicate CI workflow executions
Signed-off-by: Kyle Harding <kyle@balena.io>
This commit is contained in:
Kyle Harding 2023-03-15 11:19:49 -04:00 committed by balena-ci
parent 3030752a66
commit c3b2150272
No known key found for this signature in database
GPG key ID: 4B62DC78AC62AABA

View file

@ -18,4 +18,13 @@ jobs:
flowzone:
name: Flowzone
uses: product-os/flowzone/.github/workflows/flowzone.yml@master
# prevent duplicate workflow executions for pull_request and pull_request_target
if: |
(
github.event.pull_request.head.repo.full_name == github.repository &&
github.event_name == 'pull_request'
) || (
github.event.pull_request.head.repo.full_name != github.repository &&
github.event_name == 'pull_request_target'
)
secrets: inherit