27 lines
597 B
Plaintext
27 lines
597 B
Plaintext
name: Generate Changelog
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, master]
|
|
|
|
jobs:
|
|
changelog:
|
|
name: Update Changelog
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Update Changelog
|
|
uses: AlexxNB/chalogen@master
|
|
with:
|
|
title: Tinro Changelog
|
|
|
|
- name: Commit Changelog to repository
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: 'docs(Changelog): Update Changelog'
|
|
file_pattern: CHANGELOG.md |