Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattimatti/b58f13e519b7ed0b946c4c16c9dac6a5 to your computer and use it in GitHub Desktop.
Save mattimatti/b58f13e519b7ed0b946c4c16c9dac6a5 to your computer and use it in GitHub Desktop.
Delete all lables in github repo matching a regexp pattern
Given regexp pattern:
^1\..*?\s
gh label list --sort name | grep -o -E '^1\..*?\s' | xargs -I% gh label delete --yes %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment