Skip to content

Commit

Permalink
add issue template and add release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
huhouhua committed Feb 9, 2024
1 parent cee3efa commit 4cdf9f8
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
MD024:
allow_different_nesting: true
siblings_only: true
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
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:
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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. -->
18 changes: 18 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
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

0 comments on commit 4cdf9f8

Please sign in to comment.