mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
32 lines
882 B
YAML
32 lines
882 B
YAML
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@v4.1.6
|
|
with:
|
|
commit_message: Generate changelog
|
|
branch: "master"
|
|
commit_user_name: TomasVotruba
|
|
commit_user_email: tomas.vot@gmail.com
|
|
commit_author: TomasVotruba <tomas.vot@gmail.com>
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|