Skip to content

Commit

Permalink
updated action
Browse files Browse the repository at this point in the history
  • Loading branch information
PavlosIsaris committed Feb 3, 2025
1 parent 8004e52 commit e85a78e
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/fix-php-code-style-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ jobs:
uses: aglipanci/[email protected]

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
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@v5
with:
commit_message: Fix styling
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

0 comments on commit e85a78e

Please sign in to comment.