diff --git a/.github/workflows/release-gh-notes.yml b/.github/workflows/release-gh-notes.yml new file mode 100644 index 00000000..5491bc30 --- /dev/null +++ b/.github/workflows/release-gh-notes.yml @@ -0,0 +1,24 @@ +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 }}