Skip to content

Commit aa37d5c

Browse files
authored
feat: added issue and PR template, semantic test (#39)
1 parent b862026 commit aa37d5c

File tree

5 files changed

+97
-0
lines changed

5 files changed

+97
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report template
3+
about: Please use this template for reporting suspected bugs.
4+
title: 'bug: '
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
### Issue description
11+
12+
### Environment
13+
14+
* your apisix-java-plugin-runner version
15+
16+
### Minimal test code / Steps to reproduce the issue
17+
18+
1.
19+
2.
20+
3.
21+
22+
### What's the actual result? (including assertion message & call stack if applicable)
23+
24+
### What's the expected result?
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Request help template
3+
about: Please use this template for requesting help.
4+
title: 'request help: '
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
### Issue description
11+
12+
### Environment
13+
14+
* your apisix-java-plugin-runner version

.github/PULL_REQUEST_TEMPLATE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Please answer these questions before submitting a pull request
2+
3+
- Why submit this pull request?
4+
- [ ] Bugfix
5+
- [ ] New feature provided
6+
- [ ] Improve performance
7+
8+
- Related issues
9+
10+
___
11+
### Bugfix
12+
- Description
13+
14+
- How to fix?
15+
16+
___
17+
### New feature or improvement
18+
- Describe the details and related test reports.
19+
20+
- Source branch
21+
22+
- Related commits and pull requests
23+
24+
- Target branch

.github/semantic.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
#
19+
titleOnly: true
20+
allowRevertCommits: true
21+
types:
22+
- feat
23+
- fix
24+
- docs
25+
- style
26+
- refactor
27+
- perf
28+
- test
29+
- build
30+
- ci
31+
- chore
32+
- revert
33+
- change

.licenserc.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ header:
2828
- '.mvn'
2929
- '**/target/**'
3030
- '**/*.iml'
31+
- '.github/ISSUE_TEMPLATE'
32+
- '.github/PULL_REQUEST_TEMPLATE'
3133
- 'docs/**/**/config.json'
3234

3335
comment: on-failure

0 commit comments

Comments
 (0)