mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +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>
29 lines
711 B
YAML
29 lines
711 B
YAML
name: normalize composer.json
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- .github/workflows/composer-normalize.yml
|
|
- composer.json
|
|
|
|
jobs:
|
|
normalize:
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Git checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate Composer configuration
|
|
run: composer validate --strict
|
|
|
|
- name: Normalize composer.json
|
|
run: |
|
|
composer global config --no-plugins allow-plugins.ergebnis/composer-normalize true
|
|
composer global require ergebnis/composer-normalize
|
|
composer normalize
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: normalize composer.json
|