-
-
Notifications
You must be signed in to change notification settings - Fork 159
48 lines (39 loc) · 1.14 KB
/
codestyles.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
name: Coding standard refactor
on:
schedule:
- cron: "0 2 * * MON" # Run at 2am every Monday
workflow_dispatch: ~
jobs:
coding-standard:
runs-on: ubuntu-latest
name: "Coding standard refactor"
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
branch: [ '4.0' ]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
- name: Install PHP dependencies
run: composer update --no-interaction --no-scripts
- name: Run ECS
run: vendor/bin/ecs check --fix src
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
commit-message: '[CS] Refactor'
author: CoreShop <info@coreshop.org>
title: '[CS] Refactor'
body: |
This PR has been generated automatically to fix code-styles
labels: |
Enhancement
branch: coding-standard/refactor-${{ matrix.branch }}
delete-branch: true
base: ${{ matrix.branch }}