-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
41 lines (41 loc) · 1.18 KB
/
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
33
34
35
36
37
38
39
40
41
name: 'The Dragon Code Styler'
description: 'A tool to automatically fix PHP Coding Standards issues by The Dragon Code.'
author: 'Andrey Helldar'
inputs:
github_token:
description: 'GitHub token or PAT token.'
required: false
default: '${{ github.token }}'
fix:
description: 'Only shows which files would have been modified.'
required: false
default: 'false'
editorconfig:
description: 'Update .editorconfig file.'
required: false
default: 'true'
dependabot:
description: 'Update Dependabot rules.'
required: false
default: 'true'
normalize:
description: 'Normalize the composer.json file.'
required: false
default: 'true'
verbose:
description: 'Increase the verbosity of messages for debug'
required: false
default: 'false'
runs:
using: docker
image: Dockerfile
args:
- '${{ inputs.github_token }}'
- '${{ inputs.fix }}'
- '${{ inputs.editorconfig }}'
- '${{ inputs.dependabot }}'
- '${{ inputs.normalize }}'
- '${{ inputs.verbose }}'
branding:
icon: check
color: purple