Skip to content

release v1.12.22

release v1.12.22 #44

Workflow file for this run

name: Changelog
on:
workflow_dispatch:
push:
tags:
- v*
jobs:
generate_changelog:
runs-on: ubuntu-latest
name: Generate changelog
steps:
- uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
- run: git fetch --prune --prune-tags
- run: git tag -l 'v*'
- run: ./hack/changelog.sh > CHANGELOG.md
- uses: peter-evans/create-pull-request@v6
with:
title: 'docs: updated CHANGELOG.md'
commit-message: 'docs: updated CHANGELOG.md'
branch: create-pull-request/changelog
signoff: true