update issue templete

This commit is contained in:
Liujian
2024-10-25 09:32:12 +08:00
parent 29d5c1bdd7
commit b9c61f8b94
3 changed files with 8 additions and 9 deletions
+5 -6
View File
@@ -45,19 +45,18 @@ body:
label: Steps to Reproduce
description: Share the steps you took so that we can reproduce the issue. Reports without proper steps details will likely be closed.
placeholder: |
1. Run apinto via the Docker image.
2. Create a Route with the Admin API.
3. Try configuring ...
4. ...
1. Run APIPark via the Docker image.
2. Try configuring ...
3. ...
validations:
required: true
required: false
- type: textarea
id: environment
attributes:
label: Environment
description: Share your environment details. Reports without proper environment details will likely be closed.
value: |
- APINTO Dashboard version (run `apinto dashboard version`):
- APINTO Dashboard version:
- Operating system (run `uname -a`):
validations:
required: true
+1 -1
View File
@@ -25,7 +25,7 @@ body:
label: Environment
description: Share your environment details. Reports without proper environment details will likely be closed.
value: |
- APIPark version (run `apinto dashboard version`):
- APIPark version:
- Operating system (run `uname -a`):
validations:
required: true
+2 -2
View File
@@ -4,7 +4,7 @@ import (
"bytes"
"fmt"
"github.com/urfave/cli/v2"
"github.com/urfave/cli"
)
// These should be set via go build -ldflags -X 'xxxx'.
@@ -20,7 +20,7 @@ var profileInfo []byte
func init() {
buffer := &bytes.Buffer{}
fmt.Fprintf(buffer, "Apinto version: %s\n", Version)
fmt.Fprintf(buffer, "APIPark version: %s\n", Version)
fmt.Fprintf(buffer, "Golang version: %s\n", goVersion)
fmt.Fprintf(buffer, "Git commit hash: %s\n", gitCommit)
fmt.Fprintf(buffer, "Built on: %s\n", BuildTime)