v2.35.1: Fix Image Card and Bootstrap Demo Bugs #58
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
# To auto-update changelog on release | |
# SEE: https://tiagomichaelsousa.dev/articles/stop-writing-your-changelogs-manually | |
name: Changelog Updater | |
on: | |
release: | |
types: | |
- released | |
jobs: | |
update: | |
name: Update Changelog | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Update Changelog | |
uses: stefanzweifel/changelog-updater-action@v1 | |
with: | |
latest-version: ${{ github.event.release.name }} | |
release-notes: ${{ github.event.release.body }} | |
- name: Commit Updated Changelog | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
branch: test | |
commit_message: 'docs(changelog): update changelog' | |
file_pattern: CHANGELOG.md |