Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Bug report template | ||
about: Please use this template for reporting suspected bugs. | ||
title: 'bug: ' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Issue description | ||
|
||
### Environment | ||
|
||
* your apisix-java-plugin-runner version | ||
|
||
### Minimal test code / Steps to reproduce the issue | ||
|
||
1. | ||
2. | ||
3. | ||
|
||
### What's the actual result? (including assertion message & call stack if applicable) | ||
|
||
### What's the expected result? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Request help template | ||
about: Please use this template for requesting help. | ||
title: 'request help: ' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Issue description | ||
|
||
### Environment | ||
|
||
* your apisix-java-plugin-runner version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,24 @@ | ||
Please answer these questions before submitting a pull request | ||
|
||
- Why submit this pull request? | ||
- [ ] Bugfix | ||
- [ ] New feature provided | ||
- [ ] Improve performance | ||
|
||
- Related issues | ||
|
||
___ | ||
### Bugfix | ||
- Description | ||
|
||
- How to fix? | ||
|
||
___ | ||
### New feature or improvement | ||
- Describe the details and related test reports. | ||
|
||
- Source branch | ||
|
||
- Related commits and pull requests | ||
|
||
- Target branch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,33 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
titleOnly: true | ||
allowRevertCommits: true | ||
types: | ||
- feat | ||
- fix | ||
- docs | ||
- style | ||
- refactor | ||
- perf | ||
- test | ||
- build | ||
- ci | ||
- chore | ||
- revert | ||
- change |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -28,6 +28,8 @@ header: | ||
- '.mvn' | ||
- '**/target/**' | ||
- '**/*.iml' | ||
- '.github/ISSUE_TEMPLATE' | ||
- '.github/PULL_REQUEST_TEMPLATE' | ||
- 'docs/**/**/config.json' | ||
|
||
comment: on-failure |