-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
32 lines (31 loc) · 851 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'setup-php'
description: 'Set up your GitHub Actions workflow with a specific version of PHP'
author: 'khs1994'
inputs:
php_version:
description: PHP version
default: "8.3.0"
required: false
php_type:
description: php image type, fpm | composer | swoole | php-cs-fixer | doctum
default: fpm
required: false
job_container_network:
description: The id of the container network. The runner creates the network used by all containers in a job
default: bridge
required: false
args:
description: shell script
default: ''
required: false
image:
description: your image, e.g. username/php
default: ''
required: false
runs:
using: 'node12'
main: 'lib/setup-php.js'
branding:
icon: 'box'
color: 'green'