-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add issue template and add release ci
- Loading branch information
Showing
6 changed files
with
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MD024: | ||
allow_different_nesting: true | ||
siblings_only: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug encountered while using licctl | ||
labels: kind/bug | ||
--- | ||
|
||
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! | ||
Please try to use English to describe your issue, or at least provide a snippet of English translation. | ||
--> | ||
|
||
Bug Report | ||
--- | ||
|
||
Type: *bug report* | ||
|
||
### What happened | ||
|
||
### What you expected to happen | ||
|
||
### How to reproduce it (as minimally and precisely as possible) | ||
|
||
### Anything else we need to know? | ||
|
||
### Environment | ||
- licctl version: | ||
- OS (e.g. `cat /etc/os-release`): | ||
- Others: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
labels: kind/feature | ||
--- | ||
|
||
<!-- Here is for bug reports and feature requests ONLY! | ||
Please try to use English to describe your issue, or at least provide a snippet of English translation. | ||
--> | ||
|
||
Issue Description | ||
--- | ||
|
||
Type: *feature request* | ||
|
||
### Describe what feature you want | ||
|
||
### Additional context | ||
<!-- Add any other context or screenshots about the feature request here. --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!-- Thanks for submitting a pull request! Here are some tips for you: | ||
1. Please make sure you have read and understood the contributing guidelines: https://github.com/seacraft/licctl/blob/main/CONTRIBUTING.md | ||
2. Please make sure the PR has a corresponding issue. | ||
--> | ||
|
||
Pull Request Description | ||
--- | ||
|
||
### Describe what this PR does / why we need it | ||
|
||
### Does this pull request fix one issue? | ||
<!--If that, add "Fixes #xxxx" below in the next line. For example, Fixes #15. Otherwise, add "NONE" --> | ||
|
||
### Describe how you did it | ||
|
||
### Describe how to verify it | ||
|
||
### Special notes for reviews |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: release | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
releases-linux-binaries: | ||
name: Release Go Binaries | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
goos: [linux, darwin] | ||
goarch: [amd64, arm64] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: wangyoucao577/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
goos: ${{ matrix.goos }} | ||
goarch: ${{ matrix.goarch }} | ||
goversion: 1.20.4 | ||
extra_files: LICENSE README.md |