feat: make phpcs severity level configurable (#130)

Add inputs to allow configuring error and warning severity levels.
This allows suppressing messages in the Mage-OS repository that are
ignored in upstream Magento Open Source CI, too.
This commit is contained in:
Vinai Kopp
2023-04-11 14:41:40 +02:00
committed by GitHub
parent 5bbda33138
commit 81a1eb2273
2 changed files with 24 additions and 1 deletions
+3
View File
@@ -27,4 +27,7 @@ jobs:
with:
version: 25 # Optional, will use the latest if omitted.
path: app/code # Optional, will be used when event is not a pull request.
severity: 8 # Optional, will use phpcs default of 5 if not specified.
warning_severity: 4 # Optional, will use severity value if not specified.
error_severity: 7 # Optional, will use severity value if not specified.
```