modify github template
This commit is contained in:
parent
39bd02f741
commit
bf4e0ca7c0
|
@ -4,19 +4,9 @@ about: Report a bug encountered while operating Nightingale
|
||||||
labels: kind/bug
|
labels: kind/bug
|
||||||
---
|
---
|
||||||
|
|
||||||
**问题现象**:
|
**夜莺版本**:
|
||||||
|
|
||||||
|
|
||||||
**复现方法**:
|
**问题和复现方法**:
|
||||||
|
|
||||||
|
|
||||||
**环境信息**:
|
|
||||||
|
|
||||||
- 夜莺服务端版本 (通过`./n9e-server -v`可得知版本):
|
|
||||||
- 夜莺客户端版本 (通过`./n9e-agentd -v`可得知版本):
|
|
||||||
- 操作系统版本 (通过`uname -a`可得知OS版本):
|
|
||||||
|
|
||||||
**日志线索**:
|
|
||||||
|
|
||||||
*日志分两部分,一个是logs目录下,重点查看ERROR日志;另一部分是stdout,如果是systemd托管的,可以通过 `journalctl -u <n9e-server|n9e-agentd> -f` 查看*
|
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ name: Go
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ main ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [ main ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
@ -13,14 +13,14 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Set up Go 1.13
|
- name: Set up Go 1.17
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v1
|
||||||
with:
|
with:
|
||||||
go-version: 1.13
|
go-version: 1.17
|
||||||
id: go
|
id: go
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
- name: Check out code into the Go module directory
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: ./build.sh
|
run: make
|
||||||
|
|
Loading…
Reference in New Issue