2022-11-07 17:40:21 -08: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-07 17:40:21 -08:00
|
|
|
jobs:
|
|
|
|
flowzone:
|
|
|
|
name: Flowzone
|
2023-08-17 10:50:34 -03: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-07 17:40:21 -08:00
|
|
|
secrets: inherit
|
|
|
|
with:
|
2024-04-19 15:27:38 -04:00
|
|
|
custom_test_matrix: >
|
|
|
|
{
|
|
|
|
"os": [
|
2024-07-23 11:10:09 -07:00
|
|
|
["self-hosted", "X64"],
|
|
|
|
["self-hosted", "ARM64"],
|
2024-12-04 16:16:52 -03:00
|
|
|
["macos-13"],
|
2024-04-19 15:27:38 -04:00
|
|
|
["windows-2019"],
|
|
|
|
["macos-latest-xlarge"]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
custom_publish_matrix: >
|
|
|
|
{
|
|
|
|
"os": [
|
2024-07-23 11:10:09 -07:00
|
|
|
["self-hosted", "X64"],
|
|
|
|
["self-hosted", "ARM64"],
|
2024-12-04 16:16:52 -03:00
|
|
|
["macos-13"],
|
2024-04-19 15:27:38 -04:00
|
|
|
["windows-2019"],
|
|
|
|
["macos-latest-xlarge"]
|
|
|
|
]
|
|
|
|
}
|
2023-06-09 10:50:28 -04:00
|
|
|
github_prerelease: false
|
2023-10-18 12:53:43 -04:00
|
|
|
restrict_custom_actions: false
|