---
name: Manual release-drafter update
on:
workflow_dispatch:
inputs:
comments:
description: "Update release drafter notes"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Print workflow information
run: |
echo "Author: ${{ github.triggering_actor }}"
echo "Comments: ${{ github.event.inputs.comments }}"
- name: Checkout main branch
uses: actions/checkout@v4
- name: Update changelog
uses: release-drafter/release-drafter@v5
id: release-drafter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}