improvements in smaller screens #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fix PHP code style issues | |
on: | |
push: | |
paths: | |
- '**.php' | |
jobs: | |
php-code-styling: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Fix PHP code style issues | |
uses: aglipanci/[email protected] | |
- name: Commit changes | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git checkout -b php-code-style-fixes | |
git add . | |
git diff-index --quiet HEAD || git commit -m 'Fix styling' | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
base: main | |
branch: php-code-style-fixes | |
title: 'Fix PHP code style issues' | |
body: 'This PR fixes PHP code style issues.' | |
labels: 'code-style' | |
commit-message: 'Fix styling' | |
delete-branch: true |