Skip to content

Commit 402972b

Browse files
authored
Enhance build workflow with manual trigger option
Added workflow_dispatch event to allow manual triggering with PHP version input.
1 parent 9f1a610 commit 402972b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: build
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
inputs:
8+
php_version:
9+
description: 'PHP version to run'
10+
required: false
11+
default: '8.3'
412

513
jobs:
614
run:

0 commit comments

Comments
 (0)