mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
Bumps the deps group with 1 update: [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action). - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
738 B
YAML
34 lines
738 B
YAML
name: Fix Code Style
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
fix-style:
|
|
name: Fix Code Style
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
COMPOSER_NO_INTERACTION: 1
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.0
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: composer update --prefer-dist --no-progress
|
|
|
|
- run: composer fix-style
|
|
continue-on-error: true
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: composer fix-style
|
|
commit_author: laravel-ide-helper <[email protected]>
|