Skip to content

chore(deps): bump actions/labeler from 6 to 7 #23

chore(deps): bump actions/labeler from 6 to 7

chore(deps): bump actions/labeler from 6 to 7 #23

Workflow file for this run

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