forked from MobileByteLabs/KmpToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 990 Bytes
/
Copy pathrelease-notes.yml
File metadata and controls
31 lines (28 loc) · 990 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
26
27
28
29
30
31
# Release Notes — delegates to mbl-actionhub reusable workflow
#
# Fires on release events (and via manual dispatch for backfill) and asks the
# centralized release-notes-from-changelog workflow to prepend the matching
# CHANGELOG.md section as "What's changed" above the publish workflow's
# auto-generated "Published Modules" artifact list.
#
# Source workflow: MobileByteLabs/mbl-actionhub
# Reusable workflow docs:
# https://github.com/MobileByteLabs/mbl-actionhub#release-notes--release-notes-from-changelogyml
name: Release Notes
on:
release:
types: [created, published, edited]
workflow_dispatch:
inputs:
tag:
description: 'Release tag to enrich (e.g. v3.4.0)'
required: true
type: string
jobs:
enrich:
uses: MobileByteLabs/mbl-actionhub/.github/workflows/release-notes-from-changelog.yml@v1.7.0
permissions:
contents: write
with:
tag: ${{ github.event.release.tag_name || inputs.tag }}
secrets: inherit