Merge pull request #3310 from rectorphp/autogenerate-changelog

This commit is contained in:
Tomas Votruba 2020-05-04 21:33:00 +02:00 committed by GitHub
commit 8d2856a8bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
.github/workflows/update_changelog.yaml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Update Changelog
on:
push:
branches:
- master
jobs:
update_changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v1
with:
php-version: 7.4
coverage: none
- run: composer install --no-progress --ansi
- run: composer changelog
- uses: stefanzweifel/git-auto-commit-action@v2.5.0
with:
commit_message: Generate changelog
branch: "master"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}