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-04-19 19:27:38 +00:00
|
|
|
custom_test_matrix: >
|
|
|
|
{
|
|
|
|
"os": [
|
2024-07-23 18:10:09 +00:00
|
|
|
["self-hosted", "X64"],
|
|
|
|
["self-hosted", "ARM64"],
|
2024-12-04 19:16:52 +00:00
|
|
|
["macos-13"],
|
2024-04-19 19:27:38 +00:00
|
|
|
["windows-2019"],
|
|
|
|
["macos-latest-xlarge"]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
custom_publish_matrix: >
|
|
|
|
{
|
|
|
|
"os": [
|
2024-07-23 18:10:09 +00:00
|
|
|
["self-hosted", "X64"],
|
|
|
|
["self-hosted", "ARM64"],
|
2024-12-04 19:16:52 +00:00
|
|
|
["macos-13"],
|
2024-04-19 19:27:38 +00:00
|
|
|
["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
|