Skip to content

Bump composer/composer from 2.7.0 to 2.7.7 #12

Bump composer/composer from 2.7.0 to 2.7.7

Bump composer/composer from 2.7.0 to 2.7.7 #12

Workflow file for this run

name: Autoformat
on:
push:
branches:
- '*'
jobs:
composer-normalize:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 8.0
- run: composer install --no-interaction --no-progress --no-suggest
- run: composer normalize
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Normalize composer.json
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: creyD/[email protected]
with:
prettier_options: --write --tab-width=2 *.md **/*.md
branch: ${{ github.head_ref }}
commit_message: Prettify docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}