Skip to content

Instantly share code, notes, and snippets.

@onury
onury / export-github-labels.js
Last active November 14, 2017 12:10 — forked from MoOx/index.js
Export github labels
// go on you labels pages
// eg https://github.com/cssnext/cssnext/labels
// paste this script in your console
// copy the output and now you can import it using https://github.com/popomore/github-labels !
var labels = [];
[].slice.call(document.querySelectorAll(".label-link"))
.forEach(function(element) {
labels.push({
name: element.textContent.trim(),
@onury
onury / import-github-labels.js
Last active November 14, 2017 22:30 — forked from Isaddo/import-github-labels.js
import github labels via console command (my personal label colors)
/*
Go on your labels page (https://github.com/user/repo/labels)
Edit the following label array
or
Use this snippet to export github labels (https://gist.github.com/MoOx/93c2853fee760f42d97f)
and replace it
Paste this script in your console
Press Enter!!