Skip to content

Commit f9fd736

Browse files
authored
Create action.yml
1 parent f328760 commit f9fd736

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

action.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Generate PHP project classes list file'
2+
description: 'GitHub action to generate a file with PHP project classes list (works only with composer projects)'
3+
4+
branding:
5+
icon: list
6+
color: blue
7+
8+
inputs:
9+
output_file:
10+
description: File where will be written classes list
11+
required: true
12+
13+
runs:
14+
using: 'composite'
15+
steps:
16+
- run: php ${{ github.action_path }}/run.php ${{ inputs.output_file }}
17+
shell: bash

0 commit comments

Comments
 (0)