Skip to content

Commit

Permalink
Create composer-normalize.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gummibeer authored May 4, 2020
1 parent 2729b80 commit e895bde
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/composer-normalize.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: normalize composer.json

on:
push:
paths:
- 'composer.json'

jobs:
normalize:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2

- name: normalize composer.json
run: |
composer global require ergebnis/composer-normalize
composer normalize
- uses: stefanzweifel/git-auto-commit-action@v4.0.0
with:
commit_message: normalize composer.json

0 comments on commit e895bde

Please sign in to comment.