[d15511]: / .github / workflows / manual_release_drafter.yml

Download this file

26 lines (22 with data), 618 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
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 }}