We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9838d57 commit 91985a4Copy full SHA for 91985a4
.github/workflows/draft-release-notes.yml
@@ -0,0 +1,23 @@
1
+name: Draft Release Notes
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ draft-release:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/[email protected]
16
+ with:
17
+ fetch-depth: 0
18
+ - name: Generate release notes
19
+ uses: btfranklin/release-notes-scribe@v0
20
21
+ openai_api_key: ${{ secrets.OPENAI_API_KEY }}
22
+ github_token: ${{ secrets.GITHUB_TOKEN }}
23
+ include_github_generated_notes: "true"
0 commit comments