Skip to content

Submission 438, Abstract and Presentation Updates (#75) #73

Submission 438, Abstract and Presentation Updates (#75)

Submission 438, Abstract and Presentation Updates (#75) #73

Workflow file for this run

name: Create changelog
on: [push]
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate a changelog
uses: orhun/git-cliff-action@v2
id: git-cliff
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"