Skip to content

Pin Flowzone workflow to a5e50b8 (v22.0.6) #25

Pin Flowzone workflow to a5e50b8 (v22.0.6)

Pin Flowzone workflow to a5e50b8 (v22.0.6) #25

Workflow file for this run

name: Flowzone
on:
pull_request:
types: [opened, synchronize, closed]
branches:
- 'main'
- 'master'
pull_request_target:
types: [opened, synchronize, closed]
branches:
- 'main'
- 'master'
jobs:
flowzone:
name: Flowzone
uses: product-os/flowzone/.github/workflows/flowzone.yml@a5e50b81d86883cc1702b27562ea2af4e2bdbb2a # v22.0.6
# 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
with:
# Finalize release on merge
github_prerelease: false
# OS & arch combinations to publish built Go binaries for
custom_publish_matrix: >
{
"value": [
"linux-amd64",
"linux-arm64",
"darwin-amd64",
"darwin-arm64",
"windows-amd64"
],
"os": [
["self-hosted", "X64"]
]
}