docs: remove priority lable from ISSUE.md

This commit is contained in:
2025-01-30 20:01:54 +00:00
parent 72ce52a986
commit c87a25c2f6
+11 -28
View File
@@ -78,11 +78,6 @@ Apply appropriate labels to categorize and prioritize issues.
- `chore` - `chore`
- `revert` - `revert`
- ### Priority:
- `priority: low`
- `priority: medium`
- `priority: high`
- ### Status: - ### Status:
- `status: needs triage` - `status: needs triage`
- `status: in progress` - `status: in progress`
@@ -113,7 +108,6 @@ When creating an issue, use the appropriate template:
- Environment (OS, software vesions if possible) - Environment (OS, software vesions if possible)
- **Labels**: - **Labels**:
- `bug` - `bug`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Feature Request ### Feature Request
@@ -126,7 +120,6 @@ When creating an issue, use the appropriate template:
- Additional Context - Additional Context
- **Labels**: - **Labels**:
- `feature` - `feature`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Refactor Task ### Refactor Task
@@ -138,7 +131,6 @@ When creating an issue, use the appropriate template:
- Expected Benefits - Expected Benefits
- **Labels**: - **Labels**:
- `refactor` - `refactor`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Documentation Task ### Documentation Task
@@ -149,7 +141,6 @@ When creating an issue, use the appropriate template:
- Proposed Changes - Proposed Changes
- **Labels**: - **Labels**:
- `documentation` - `documentation`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Performance Improvement ### Performance Improvement
@@ -162,7 +153,6 @@ When creating an issue, use the appropriate template:
- Additional Information - Additional Information
- **Labels**: - **Labels**:
- `performance` - `performance`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Test Task ### Test Task
@@ -175,7 +165,6 @@ When creating an issue, use the appropriate template:
- Additional Context - Additional Context
- **Labels**: - **Labels**:
- `test` - `test`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Build Task ### Build Task
@@ -188,7 +177,6 @@ When creating an issue, use the appropriate template:
- Impact - Impact
- **Labels**: - **Labels**:
- `build` - `build`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### CI Task ### CI Task
@@ -201,7 +189,6 @@ When creating an issue, use the appropriate template:
- Impact - Impact
- **Labels**: - **Labels**:
- `ci` - `ci`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Chore Task ### Chore Task
@@ -213,7 +200,6 @@ When creating an issue, use the appropriate template:
- Impact - Impact
- **Labels**: - **Labels**:
- `chore` - `chore`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
### Revert Task ### Revert Task
@@ -225,7 +211,6 @@ When creating an issue, use the appropriate template:
- Impact - Impact
- **Labels**: - **Labels**:
- `chore` - `chore`
- `priority: {high|medium|low}`
- `status: needs triage` - `status: needs triage`
## Referencing Issues and Pull Requests ## Referencing Issues and Pull Requests
@@ -244,7 +229,7 @@ When creating an issue, use the appropriate template:
## Workflow ## Workflow
1. **Search Before Posting**: Check if a similar issue already exists. 1. **Search Before Posting**: Check if a similar issue already exists.
2. **Create the Issue**: Use the correct template and follow the conventions. 2. **Create the Issue**: Use the correct template and follow the conventions.
3. **Label Appropriately**: Add relevant lables for type, priority and status. 3. **Label Appropriately**: Add relevant lables for type and status.
4. **Assign and Milestones**: Assign yourself if working on it and add to a milestone if applicable. 4. **Assign and Milestones**: Assign yourself if working on it and add to a milestone if applicable.
5. **Discussion**: Use the issue comments for any discussion or clarification. 5. **Discussion**: Use the issue comments for any discussion or clarification.
6. **Link Pull Requests**: When submitting a PR, reference the issue it addresses. 6. **Link Pull Requests**: When submitting a PR, reference the issue it addresses.
@@ -258,22 +243,21 @@ Feature: Implement note graph visualization
Labels: Labels:
- feature - feature
- priority: medium
- status: needs triage - status: needs triage
Description: Description:
**Overview:** # Overview
Implement a visual graph representation of notes showing their connections. Implement a visual graph representation of notes showing their connections.
**Motivation:** # Motivation
Helps users understand relationships between notes at a glance. Helps users understand relationships between notes at a glance.
**Proposed Solution:** # Proposed Solution
- Use D3.js for rendering the graph. - Use D3.js for rendering the graph.
- Nodes represent notes; edges represent links. - Nodes represent notes; edges represent links.
**Additional Context:** # Additional Context
- Related to the discussion in #400. - Related to the discussion in #400.
``` ```
@@ -284,30 +268,29 @@ Bug: Unable to save notes with special characters
Labels: Labels:
- bug - bug
- priority: high
- status: needs triage - status: needs triage
Description: Description:
**Overview:** # Overview
Notes containing special characters like `&`, `<`, and `>` are not saved correctly. Notes containing special characters like `&`, `<`, and `>` are not saved correctly.
**Steps to Reproduce:** # Steps to Reproduce
1. Create a new note. 1. Create a new note.
2. Include special characters in the content. 2. Include special characters in the content.
3. Save the note. 3. Save the note.
4. Reopen the note. 4. Reopen the note.
**Expected Behavior:** # Expected Behavior
The note content is saved and displayed correctly. The note content is saved and displayed correctly.
**Actual Behavior:** # Actual Behavior
Special characters are either stripped out or cause display issues. Special characters are either stripped out or cause display issues.
**Environment:** # Environment
- Application Version: 1.2.3 - Application Version: 1.2.3
- OS: Windows 10 - OS: Windows 10
**Additional Information:** # Additional Information
- Possibly related to encoding issues. - Possibly related to encoding issues.
``` ```