Skip to content

Commit a760f51

Browse files
authored
optimize: fix ISSUE_TEMPLATE not work (#7370)
1 parent da561bd commit a760f51

File tree

8 files changed

+154
-97
lines changed

8 files changed

+154
-97
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 0 additions & 61 deletions
This file was deleted.
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
name: Bug Report
19+
description: If you would like to report an issue to Seata, please use this template.
20+
21+
body:
22+
- type: markdown
23+
attributes:
24+
value: Please do not use this issue template to report security vulnerabilities but refer to our [security policy](https://github.com/seata/seata/security/policy).
25+
26+
- type: checkboxes
27+
attributes:
28+
label: Check Ahead
29+
options:
30+
- label: >
31+
I have searched the [issues](https://github.com/seata/seata/issues) of this repository and believe that this is not a duplicate.
32+
required: true
33+
34+
- type: textarea
35+
attributes:
36+
label: Ⅰ. Issue Description
37+
validations:
38+
required: false
39+
40+
- type: textarea
41+
attributes:
42+
label: Ⅱ. Describe what happened
43+
placeholder: >
44+
If there is an exception, please attach the exception trace:
45+
46+
```
47+
Just paste your stack trace here!
48+
```
49+
validations:
50+
required: false
51+
52+
- type: textarea
53+
attributes:
54+
label: Ⅲ. Describe what you expected to happen
55+
validations:
56+
required: false
57+
58+
- type: textarea
59+
attributes:
60+
label: Ⅳ. How to reproduce it (as minimally and precisely as possible)
61+
placeholder: >
62+
1. xxx
63+
2. xxx
64+
3. xxx
65+
66+
Minimal yet complete reproducer code (or URL to code):
67+
validations:
68+
required: false
69+
70+
- type: textarea
71+
attributes:
72+
label: Ⅴ. Anything else we need to know?
73+
validations:
74+
required: false
75+
76+
- type: textarea
77+
attributes:
78+
label: Ⅵ. Environment
79+
placeholder: >
80+
- JDK version(e.g. `java -version`):
81+
- Seata client/server version:
82+
- Database version:
83+
- OS(e.g. `uname -a`):
84+
- Others:
85+
validations:
86+
required: false

.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md

Lines changed: 0 additions & 34 deletions
This file was deleted.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
name: Feature Request
19+
description: Suggest an idea for Seata
20+
21+
body:
22+
- type: markdown
23+
attributes:
24+
value: |
25+
Please do not use this issue template to report security vulnerabilities but refer to our [security policy](https://github.com/seata/seata/security/policy).
26+
**For major feature requests impacting the roadmap**, please submit them to [our Mailing List](mailto:dev@seata.apache.org) for broader discussion!
27+
28+
- type: textarea
29+
attributes:
30+
label: Why you need it?
31+
description: Is your feature request related to a problem? Please describe in details
32+
33+
- type: textarea
34+
attributes:
35+
label: How it could be?
36+
description: A clear and concise description of what you want to happen. You can explain more about input of the feature, and output of it.
37+
38+
- type: textarea
39+
attributes:
40+
label: Other related information
41+
description: Add any other context or screenshots about the feature request here.
42+

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
blank_issues_enabled: false
19+
contact_links:
20+
- name: Ask a question
21+
url: https://github.com/apache/incubator-seata/discussions/categories/q-a
22+
about: Ask the community for help

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ You can view the full documentation from Seata Official Website: [Seata Website
133133

134134
## Reporting bugs
135135

136-
Please follow the [template](./.github/ISSUE_TEMPLATE/BUG_REPORT.md) for reporting any issues.
136+
Please follow the [template](./.github/ISSUE_TEMPLATE/BUG_REPORT.yml) for reporting any issues.
137137

138138
## Security
139139

changes/en-us/2.x.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Add changes here for all PR submitted to the 2.x branch.
2828
- [[#7349](https://github.com/apache/incubator-seata/pull/7349)] Resolve NullPointerException in EtcdRegistryServiceImplMockTest
2929
- [[#7354](https://github.com/apache/incubator-seata/pull/7354)] fix the drivers in the libs folder cannot be loaded
3030
- [[#7356](https://github.com/apache/incubator-seata/pull/7356)] fix codecov bug
31+
- [[#7370](https://github.com/apache/incubator-seata/pull/7370)] fix ISSUE_TEMPLATE not work
3132

3233

3334

changes/zh-cn/2.x.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@
2121
### feature:
2222

2323
- [[#7261](https://github.com/apache/incubator-seata/pull/7261)] 强制进行账户初始化并禁用默认凭据
24-
- [[#7356](https://github.com/apache/incubator-seata/pull/7356)] 修复 codecov 错误
2524

2625

2726
### bugfix:
2827

2928
- [[#7349](https://github.com/apache/incubator-seata/pull/7349)] 解决 EtcdRegistryServiceImplMockTest 中的空指针异常
3029
- [[#7354](https://github.com/apache/incubator-seata/pull/7354)] 修复lib文件夹中的驱动程序无法加载
30+
- [[#7356](https://github.com/apache/incubator-seata/pull/7356)] 修复 codecov 错误
31+
- [[#7370](https://github.com/apache/incubator-seata/pull/7370)] 修复 ISSUE_TEMPLATE 不可用
3132

3233
### optimize:
3334

0 commit comments

Comments
 (0)