20 lines
472 B
YAML
20 lines
472 B
YAML
name: Build desktop images at PR
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types: [ready_for_review]
|
|
pull_request_review:
|
|
types: [submitted]
|
|
|
|
jobs:
|
|
|
|
Maintain:
|
|
if: ${{ github.repository_owner == 'Armbian' && contains( github.event.pull_request.labels.*.name, 'desktop') }}
|
|
uses: armbian/scripts/.github/workflows/build-test-image-docker.yml@master
|
|
|
|
with:
|
|
|
|
runner: "ubuntu-latest"
|
|
reference: ${{ github.event.pull_request.head.sha }}
|