Skip to content

Release Github notes #6

Release Github notes

Release Github notes #6

name: Release Github notes
on:
workflow_dispatch:
inputs:
version:
required: true
description: "Specify the version for this release"
type: string
commit:
required: true
description: "commit to generate release notes"
type: string
permissions:
contents: write
jobs:
release:
uses: cloudscape-design/actions/.github/workflows/release-gh-notes.yml@main
secrets: inherit
with:
version: ${{ github.event.inputs.version }}
commit: ${{ github.event.inputs.commit }}