-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
32 lines (32 loc) · 825 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
name: 'php-class-diagram'
description: 'Create class diagram action.'
inputs:
target-path:
description: 'Target source directory.'
required: true
default: 'src'
output-path:
description: 'Output image path.'
required: false
default: 'php-class-diagram.svg'
options:
description: 'Additional options of php-class-diagram.'
required: false
default: ''
target-repo:
description: 'Target repository. (smeghead/php-class-diagram)'
required: false
default: ''
target-branch:
description: 'Target branch name. (main)'
required: false
default: 'main'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.target-path }}
- ${{ inputs.output-path }}
- ${{ inputs.options }}
- ${{ inputs.target-repo }}
- ${{ inputs.target-branch }}