Merge pull request #188 from christianhelle/code-generator-settings #54
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: Changelog | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/changelog.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- 'main' | |
jobs: | |
changelog: | |
if: github.ref == 'refs/heads/main' && github.repository == 'christianhelle/refitter' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛒 Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PAT }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
- name: Install github_changelog_generator | |
run: gem install github_changelog_generator | |
- name: Re-generate CHANGELOG.md | |
run: github_changelog_generator --user christianhelle --project refitter --token ${{ secrets.PAT }} | |
- name: Git commit CHANGELOG.md | |
run: | | |
git config --global user.name "Continuous Integration" | |
git config --global user.email "username@users.noreply.github.com" | |
git add CHANGELOG.md | |
git commit -m "Update changelog [skip ci]" | |
git push |