forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github: refine issue template and issue assign action (pingcap#15451)
- Loading branch information
Showing
7 changed files
with
42 additions
and
22 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 |
---|---|---|
@@ -1,24 +1,19 @@ | ||
--- | ||
name: "\U0001F41B Bug Report" | ||
about: Something isn't working as expected | ||
about: As a User, I want to report a Bug. | ||
labels: type/bug | ||
--- | ||
|
||
## Bug Report | ||
|
||
Please answer these questions before submitting your issue. Thanks! | ||
|
||
1. What did you do? | ||
<!--If possible, provide a recipe for reproducing the error.--> | ||
### 1. What did you do? | ||
|
||
<!-- If possible, provide a recipe for reproducing the error. --> | ||
|
||
2. What did you expect to see? | ||
### 2. What did you expect to see? | ||
|
||
### 3. What did you see instead? | ||
|
||
|
||
3. What did you see instead? | ||
|
||
|
||
|
||
4. What version of TiDB are you using (`tidb-server -V` or run `select tidb_version();` on TiDB)? | ||
|
||
### 4. What version of TiDB are you using? (`tidb-server -V` or run `select tidb_version();` on TiDB) |
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
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,7 @@ | ||
--- | ||
name: "\U0001F680 Development Task" | ||
about: As a TiDB developer, I want to record a development task. | ||
labels: type/enhancement | ||
--- | ||
|
||
## Development Task |
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
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
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
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 |
---|---|---|
|
@@ -27,3 +27,18 @@ jobs: | |
with: | ||
project: 'https://github.com/pingcap/tidb/projects/39' | ||
column_name: 'Issue Backlog: Need Triage' | ||
- name: Run issues assignment to Question and Bug Reports Kanban | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'type/question') || | ||
contains(github.event.issue.labels.*.name, 'type/bug') | ||
with: | ||
project: 'https://github.com/pingcap/tidb/projects/36' | ||
column_name: 'Need Triage' | ||
- name: Run issues assignment to Feature Request Kanban | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'type/feature-request') | ||
with: | ||
project: 'https://github.com/pingcap/tidb/projects/41' | ||
column_name: 'Need Triage' |