You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/ISSUE_TEMPLATE/feature_request.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ body:
10
10
id: feature-description
11
11
attributes:
12
12
label: Clear and concise description of the problem
13
-
description: 'As a developer using Vite I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!'
13
+
description: 'As a developer using electron-toolkit I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!'
- 'v*'# Push events to matching v*, i.e. v1.0, v20.15.10
5
-
- 'utils-v*'
6
-
- 'tsconfig-v*'
7
-
- 'preload-v*'
4
+
- 'utils*'
5
+
- 'tsconfig*'
6
+
- 'preload*'
7
+
- 'vue*'
8
+
- 'react*'
8
9
9
10
name: Create Release
10
11
@@ -15,6 +16,11 @@ jobs:
15
16
steps:
16
17
- name: Checkout code
17
18
uses: actions/checkout@master
19
+
- name: Get package name for tag
20
+
id: tag
21
+
run: |
22
+
pkgName=${GITHUB_REF_NAME%@*}
23
+
echo "::set-output name=pkgName::$pkgName"
18
24
- name: Create Release for Tag
19
25
id: release_tag
20
26
uses: actions/create-release@v1
@@ -24,4 +30,4 @@ jobs:
24
30
tag_name: ${{ github.ref }}
25
31
release_name: ${{ github.ref }}
26
32
body: |
27
-
Please refer to [CHANGELOG.md](https://github.com/alex8088/electron-toolkit/blob/${{ github.ref_name }}/CHANGELOG.md) for details.
33
+
Please refer to [CHANGELOG.md](https://github.com/alex8088/electron-toolkit/blob/${{ github.ref_name }}/packages/${{ steps.tag.outputs.pkgName }}/CHANGELOG.md) for details.
0 commit comments