From 8ed9f1f8e2427498b47cca3d6c81529f6211e39a Mon Sep 17 00:00:00 2001 From: "S. Amir Mohammad Najafi" Date: Sat, 29 Nov 2025 08:32:01 +0330 Subject: [PATCH] feat(labels): add new labels for issue tracking and versioning --- .github/labels.yml | 60 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/labels.yml diff --git a/.github/labels.yml b/.github/labels.yml new file mode 100644 index 0000000..ca72766 --- /dev/null +++ b/.github/labels.yml @@ -0,0 +1,60 @@ +- name: 'feature' + color: 0E8A16 + description: 'Represents all feature requests and new feature implementations. (Replaces feature-request and new-feature)' +- name: 'bug' + color: D93F0B + description: 'Something is not working as expected.' +- name: 'breaking-change' + color: B60205 + description: 'A change that changes the API or breaks backward compatibility for users.' +- name: 'security' + color: B80808 + description: 'Addressing a vulnerability or security risk in this project.' +- name: 'documentation' + color: 0052CC + description: 'Solely about the documentation of the project.' +- name: 'refactor' + color: 1D76DB + description: 'Updating the code with simpler, easier to understand or more efficient syntax or methods.' +- name: 'ci' + color: 1D76DB + description: 'Work that improves the continuous integration.' +- name: 'dependencies' + color: 1D76DB + description: 'Change in project dependencies.' +- name: 'in-progress' + color: F7C632 + description: 'Issue is currently being worked on by a developer.' +- name: 'ready-for-review' + color: 0E5C0D + description: 'Work is done, initial tests (Self-Review) passed, and ready for review by colleagues.' +- name: 'changes-requested' + color: D93F0B + description: 'Reviewer has requested changes/corrections. Author needs to work on it again.' +- name: 'waiting-on-author' + color: FBCA04 + description: 'Workflow is paused, waiting for author response/changes/clarification.' +- name: 'blocked' + color: B60205 + description: 'PR/Issue cannot proceed due to external dependency or CI/CD issue.' +- name: 'priority-critical' + color: B80808 + description: 'Must be addressed as soon as possible.' +- name: 'priority-high' + color: D93F0B + description: 'After critical issues are fixed, these should be dealt with before any further issues.' +- name: 'priority-medium' + color: 5319E7 + description: 'This issue may be useful, and needs some attention.' +- name: 'priority-low' + color: 5319E7 + description: 'Nice addition, maybe... someday...' +- name: 'major' + color: B60205 + description: 'This PR causes a major bump in the version number.' +- name: 'minor' + color: 0E8A16 + description: 'This PR causes a minor bump in the version number.' +- name: 'Jules' + color: 5319E7 + description: 'Label for Google Jules AI.'