Skip to content

Commit 82b17cf

Browse files
author
Rúben Carvalho
authored
chore: Add release notes workflow (#13)
1 parent 436e9ff commit 82b17cf

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Release Github notes
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
required: true
8+
description: "Specify the version for this release"
9+
type: string
10+
commit:
11+
required: true
12+
description: "commit to generate release notes"
13+
type: string
14+
15+
permissions:
16+
contents: write
17+
18+
jobs:
19+
release:
20+
uses: cloudscape-design/actions/.github/workflows/release-gh-notes.yml@main
21+
secrets: inherit
22+
with:
23+
version: ${{ github.event.inputs.version }}
24+
commit: ${{ github.event.inputs.commit }}

0 commit comments

Comments
 (0)