Skip to content

Commit 2473581

Browse files
committed
DRAFT: Run with default value on pull_request
1 parent 49782f0 commit 2473581

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build-overlay-deb.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
name: Build a Debian package using an overlay recipe
22

33
on:
4+
# temporarily allow on push and pull_request
5+
push:
6+
pull_request:
47
workflow_dispatch:
58
inputs:
69
config:
710
description: 'Path to the YAML configuration file'
811
required: true
912
type: string
1013

14+
# this provides a fallback on pull_request where we can't set the value
15+
env:
16+
CONFIG_PATH: ${{ inputs.config || 'overlay-debs/mesa-experimental/mesa_25.1.0-1qcom1.yaml' }}
17+
1118
jobs:
1219
build:
1320
strategy:

0 commit comments

Comments
 (0)