Commit d4ab1fb 1 parent 01cab1e commit d4ab1fb Copy full SHA for d4ab1fb
File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { jsCategoryState } from 'src/utils/categories' ;
2
2
import { addGithubWorkflow } from 'src/utils/github' ;
3
3
4
- const content = `name: Create Release
4
+ const content = `name: release
5
5
6
6
on:
7
7
push:
@@ -14,13 +14,16 @@ jobs:
14
14
steps:
15
15
- name: Checkout code
16
16
uses: actions/checkout@v2
17
- - name: Parse CHANGELOG.md
18
- id: changelog
19
- uses: coditory/changelog-parser@v1
17
+ - name: Get release notes from CHANGELOG.md
18
+ uses: yashanand1910/standard-release-notes@v1.2.1
19
+ id: get_release_notes
20
+ with:
21
+ version: \${{ github.ref }}
20
22
- name: Release to github
21
23
uses: softprops/action-gh-release@v1
22
24
with:
23
- body: \${{ steps.changelog.outputs.description }}
25
+ body: \${{ steps.get_release_notes.outputs.release_notes }}
26
+
24
27
` ;
25
28
26
29
const defaultConfig = {
You can’t perform that action at this time.
0 commit comments