Skip to content

Commit

Permalink
Update Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschucki committed Jan 28, 2024
1 parent 7221505 commit fcc6756
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/fix-php-code-styling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Fix PHP Code Styling"

on:
push:
paths:
- '**.php'

permissions:
contents: write

jobs:
php-code-styling:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Fix PHP code style issues
uses: aglipanci/laravel-pint-action@2.3.1

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix styling
16 changes: 0 additions & 16 deletions .github/workflows/pint.yml

This file was deleted.

1 change: 1 addition & 0 deletions app/Filament/Pages/UpdateUserData.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class UpdateUserData extends EditProfile
public function getTitle(): string|Htmlable
{
return 'Meine Daten';

}

/**
Expand Down

0 comments on commit fcc6756

Please sign in to comment.