-
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (57 loc) · 2.48 KB
/
code-style.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Code Style
on: [ push, pull_request ]
permissions: write-all
jobs:
check:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
name: Check
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json
coverage: none
- name: Install dependency
run: composer global require dragon-code/codestyler
- name: Check the code-style
run: codestyle --test
fix:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
name: Fix
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json
coverage: none
- name: Setup Composer
run: |
composer global config --no-plugins allow-plugins.dragon-code/codestyler true
composer global config --no-plugins allow-plugins.ergebnis/composer-normalize true
composer config --no-plugins allow-plugins.dragon-code/codestyler true
composer config --no-plugins allow-plugins.ergebnis/composer-normalize true
- name: Install dependencies
run: |
composer global require dragon-code/codestyler
composer global require ergebnis/composer-normalize
- name: Fix the code-style
run: |
codestyle dependabot
codestyle
composer normalize
- name: Create a Pull Request
uses: peter-evans/create-pull-request@v7
with:
branch: code-style
branch-suffix: random
delete-branch: true
title: "🦋 The code style has been fixed"
commit-message: 🦋 The code style has been fixed
body: The code style has been fixed
labels: code-style