Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JamieMason/7b1a0d2f5821574cdd5066629c1d0ff2 to your computer and use it in GitHub Desktop.
Save JamieMason/7b1a0d2f5821574cdd5066629c1d0ff2 to your computer and use it in GitHub Desktop.
Copy names of all GitHub Issue Labels

Copy names of all GitHub Issue Labels

Visit https://github.com/YOUR_ORGANISATION/YOUR_REPO/labels and run this in your Browser DevTools

$$('.js-label-link')
  .map(el => el.innerText)
  .join('\n')

Output will be similar to:

dependencies
help wanted
Priority: Critical
Priority: High
Priority: Low
Priority: Medium
Status: Abandoned
Status: Awaiting Release
Status: Blocked
Status: In Progress
Status: Released
Status: To Do
Type: Chore
Type: Docs
Type: Duplicate
Type: Feat
Type: Fix
Type: Perf
Type: Question
Type: Refactor
Type: Style
Type: Test
Type: Upstream
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment