generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 775 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
name: 'PHP_CodeSniffer'
description: 'Runs PHP_CodeSniffer'
author: 'Novusvetus / Marcel Rudolf, Germany <development@novusvetus.de>'
inputs:
files:
required: false
description: 'Files to check'
default: '**.php'
scan_all:
required: false
description: 'Scan all files and not only changed'
default: false
phpcs_path:
required: false
description: 'Path to phpcs executable'
default: 'php phpcs.phar'
standard:
required: false
description: 'Code style standard name or path to phpcs.xml file'
fail_on_warnings:
required: false
description: 'Whether action should fail on warnings or not, default to true (fails)'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'check-circle'
color: 'gray-dark'