Generate Changelog #1
Workflow file for this run
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: Generate Changelog | |
on: | |
push: | |
tags: | |
- "v*.*.*" # This will trigger on version tags like v0.0.1, v0.1.0, v1.0.0, etc. | |
workflow_dispatch: # This allows manual triggering of the workflow from the GitHub Actions tab. | |
jobs: | |
generate-changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.0" # Specify the version of Ruby | |
- name: Install github_changelog_generator | |
run: gem install github_changelog_generator | |
- name: Generate Changelog | |
run: | | |
github_changelog_generator --user joshuadanpeterson --project typewriter.nvim --token ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit and push changelog | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git add CHANGELOG.md | |
git commit -m 'Update changelog' | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |