Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/flowzone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ on:
pull_request:
types: [opened, synchronize, closed]
branches: [main, master]
# allow external contributions to use secrets within trusted code
pull_request_target:
types: [opened, synchronize, closed]
branches: [main, master]
push:
tags:
- '*.*.*'

jobs:
flowzone:
name: Flowzone
uses: product-os/flowzone/.github/workflows/flowzone.yml@6875845ba747463fd80d428600e9e51303e410df # v17.4.39
uses: product-os/flowzone/.github/workflows/flowzone.yml@ae54b290afa025d3420ba59001f333c2801b4944 # v19.9.32
# prevent duplicate workflow executions for pull_request and pull_request_target
if: |
(
Expand All @@ -21,6 +23,8 @@ jobs:
) || (
github.event.pull_request.head.repo.full_name != github.repository &&
github.event_name == 'pull_request_target'
) || (
github.event_name == 'push'
)

secrets:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine

RUN apk add --update --no-cache eudev dnsmasq grep && \
RUN apk add --update --no-cache eudev dnsmasq grep kmod && \
echo 'libcomposite' >> /etc/modules

COPY entry.sh .
Expand Down
Loading