fix(pivot): only use unique classes in the pivot union (Fixes #1606) … #110
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: normalize composer.json | |
on: | |
push: | |
paths: | |
- .github/workflows/composer-normalize.yml | |
- composer.json | |
jobs: | |
normalize: | |
timeout-minutes: 15 | |
runs-on: ubuntu-22.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 |