chore: add support for python can 4.5.0 (#521) #239
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: Changelog Updater | |
on: | |
push: | |
paths: | |
- 'pyproject.toml' | |
jobs: | |
build: | |
# Only and only if we are on the main project master | |
if: github.repository == 'eclipse/kiso-testing' && github.ref == 'refs/heads/master' | |
name: Update changelog | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Generate changelog | |
uses: orhun/git-cliff-action@v1 | |
with: | |
config: .github/workflows/cliff.toml | |
env: | |
OUTPUT: CHANGELOG.md | |
- name: Commit changelog | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore(changelog): update changelog to newest version" | |
file_pattern: CHANGELOG.md |