2022-11-08 01:40:21 +00:00
|
|
|
name: Flowzone
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, closed]
|
2023-05-16 00:02:37 +00:00
|
|
|
branches: [main, master]
|
|
|
|
pull_request_target:
|
|
|
|
types: [opened, synchronize, closed]
|
|
|
|
branches: [main, master]
|
2022-11-08 01:40:21 +00:00
|
|
|
jobs:
|
|
|
|
flowzone:
|
|
|
|
name: Flowzone
|
2023-08-17 13:50:34 +00:00
|
|
|
uses: product-os/flowzone/.github/workflows/flowzone.yml@master
|
2023-05-16 00:02:37 +00:00
|
|
|
# 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'
|
|
|
|
)
|
2022-11-08 01:40:21 +00:00
|
|
|
secrets: inherit
|
|
|
|
with:
|
2024-03-11 22:58:28 +00:00
|
|
|
custom_runs_on: '[["self-hosted","Linux","distro:focal","X64"],["self-hosted","Linux","distro:focal","ARM64"],["macos-12"],["windows-2019"],["macos-latest-xlarge"]]'
|
2023-06-09 14:50:28 +00:00
|
|
|
github_prerelease: false
|
2023-10-18 16:53:43 +00:00
|
|
|
restrict_custom_actions: false
|