Skip to content

Release 0.1.3

Release 0.1.3 #4

Workflow file for this run

name: Release PR
on:
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]
jobs:
changelog-preview:
if: startsWith(github.head_ref, 'release/')
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate changelog preview
env:
OUTPUT: /tmp/changelog-preview.md
run: python3 scripts/build_changelog_comment.py
- name: Post changelog preview comment
uses: marocchino/sticky-pull-request-comment@v2
with:
header: changelog-preview
path: /tmp/changelog-preview.md