Skip to content

chore: cleanup

chore: cleanup #200

Workflow file for this run

name: Generate-Changelog
on:
repository_dispatch:
workflow_dispatch:
push:
branches:
- main
- master
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate a changelog
uses: orhun/[email protected]
id: git-cliff
with:
config: ./cliff.toml
args: --verbose
env:
OUTPUT: ./inst/CHANGELOG.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"
- name: Commit and Push Changes
uses: actions-js/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}