-
-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (32 loc) · 1.32 KB
/
lint-fixer.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
name: "Code-Style Fixer"
on:
push:
branches: [ main ]
jobs:
fix:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checking PHP Syntax
uses: TheDragonCode/codestyler@v3.9.0
with:
# This token uses GitHub Actions to execute code.
# Required when `fix` is `true`.
# The default value is `${{ secrets.GITHUB_TOKEN }}`.
github_token: ${{ secrets.TOKEN }}
# Activates the mode of accepting changes with the creation
# of commits.
fix: true
# Activates the actualization of the `.editorconfig` file.
# Works only when the `fix` option is enabled.
# By default, true
editorconfig: true
# Activates Dependabot file processing.
# Works only when the `fix` option is enabled.
# By default, true
dependabot: true
# Normalizing `composer.json`.
# Works only when the `fix` option is enabled.
# By default, true
normalize: true