Skip to content

Commit 1ad6088

Browse files
committed
WIP
1 parent 0e5c744 commit 1ad6088

File tree

3 files changed

+11
-27
lines changed

3 files changed

+11
-27
lines changed

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ jobs:
1313

1414
- name: Dependabot metadata
1515
id: metadata
16-
17-
uses: dependabot/[email protected]
16+
uses: dependabot/[email protected]
1817
with:
1918
github-token: "${{ secrets.GITHUB_TOKEN }}"
2019

.github/workflows/dependency-review.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/fix-php-code-style-issues.yml renamed to .github/workflows/php-cs-fixer.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
name: Fix PHP code style issues
1+
name: Check & fix styling
22

3-
on: [push]
3+
on:
4+
push:
5+
branches:
6+
- styling
47

58
jobs:
6-
php-code-styling:
9+
php-cs-fixer:
710
runs-on: ubuntu-latest
811

912
steps:
@@ -12,8 +15,10 @@ jobs:
1215
with:
1316
ref: ${{ github.head_ref }}
1417

15-
- name: Fix PHP code style issues
16-
uses: aglipanci/[email protected]
18+
- name: Run PHP CS Fixer
19+
uses: docker://oskarstark/php-cs-fixer-ga
20+
with:
21+
args: --config=.php-cs-fixer.dist.php --allow-risky=yes
1722

1823
- name: Commit changes
1924
uses: stefanzweifel/git-auto-commit-action@v4

0 commit comments

Comments
 (0)