We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f328760 commit f9fd736Copy full SHA for f9fd736
action.yml
@@ -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