Skip to content

Commit 595e885

Browse files
author
Andrey Helldar
committed
Merge remote-tracking branch 'origin/main' into 2.x
# Conflicts: # .editorconfig
2 parents 009cdc1 + 689e200 commit 595e885

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
-
4+
package-ecosystem: github-actions
5+
directory: /
6+
schedule:
7+
interval: daily
8+
timezone: UTC
9+
time: '00:00'

.github/workflows/lint-check.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Code-Style Check"
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
check:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Checking PHP Syntax
14+
uses: TheDragonCode/[email protected]

.github/workflows/lint-fixer.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Code-Style Fixer"
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
fix:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
15+
- name: Checking PHP Syntax
16+
uses: TheDragonCode/[email protected]
17+
with:
18+
fix: true

0 commit comments

Comments
 (0)