Last updated: Jul 25, 2025, 10:08 AM UTC

GitHub Issue Labels Setup

GitHub Issue Labels for Convert To Markdown

Bug/Issue Labels

Label Color Description
bug #d73a4a (red) Something isn't working
critical #e11d21 (dark red) Critical issue affecting production
security #ee0701 (bright red) Security vulnerability or concern

Feature/Enhancement Labels

Label Color Description
enhancement #a2eeef (light blue) New feature or request
feature #1d76db (blue) New functionality
improvement #84b6eb (sky blue) Improvement to existing functionality

File Format Labels

Label Color Description
format:excel #5319e7 (purple) Excel (.xlsx, .xls, .xlsm) conversion issues
format:pdf #d93f0b (orange) PDF conversion issues
format:word #0052cc (blue) Word (.docx, .dotx, .dotm) conversion issues
format:powerpoint #fbca04 (yellow) PowerPoint (.pptx, .ppsx, .potx) conversion issues

Status Labels

Label Color Description
help wanted #008672 (green) Extra attention is needed
good first issue #7057ff (purple) Good for newcomers
in progress #fef2c0 (light yellow) Currently being worked on
blocked #b60205 (dark red) Blocked by external factors
needs review #fbca04 (yellow) Needs code review

Type Labels

Label Color Description
documentation #0075ca (blue) Improvements or additions to documentation
question #d876e3 (light purple) Further information is requested
api #5319e7 (purple) API-related issue or feature
npm #cb2431 (red) NPM package related issue
performance #f9d0c4 (light pink) Performance optimization

Priority Labels

Label Color Description
priority:high #e11d21 (red) High priority issue
priority:medium #fbca04 (yellow) Medium priority issue
priority:low #c5def5 (light blue) Low priority issue

Resolution Labels

Label Color Description
duplicate #cfd3d7 (gray) This issue or pull request already exists
invalid #e4e669 (light yellow) This doesn't seem right
wontfix #ffffff (white) This will not be worked on
fixed #0e8a16 (green) Issue has been resolved

How to Add These Labels

  1. Go to https://github.com/wapdat/convert-to-markdown/labels
  2. Click "New label" for each label
  3. Enter the name, description, and color code
  4. Click "Create label"

Quick Setup Script

You can also use GitHub's API to create all labels at once. Run this script:

./create-github-labels.sh

Make sure to set your GitHub personal access token first:

export GITHUB_TOKEN="your-github-token"