├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .vscode ├── cspell.json └── settings.json ├── LICENSE.txt ├── README.md ├── gh-label ├── go.mod ├── go.sum ├── internal ├── cmd │ ├── create │ │ ├── create.go │ │ └── create_test.go │ ├── delete │ │ ├── delete.go │ │ └── delete_test.go │ ├── edit │ │ ├── edit.go │ │ └── edit_test.go │ ├── export │ │ ├── export.go │ │ └── export_test.go │ ├── import │ │ ├── import.go │ │ └── import_test.go │ └── list │ │ ├── list.go │ │ └── list_test.go ├── github │ ├── cli.go │ ├── client.go │ ├── client_test.go │ ├── labels.go │ └── labels_test.go ├── options │ ├── options.go │ └── options_test.go └── utils │ ├── colors.go │ ├── colors_test.go │ ├── utils.go │ └── utils_test.go └── main.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/README.md -------------------------------------------------------------------------------- /gh-label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/gh-label -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cmd/create/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/create/create.go -------------------------------------------------------------------------------- /internal/cmd/create/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/create/create_test.go -------------------------------------------------------------------------------- /internal/cmd/delete/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/delete/delete.go -------------------------------------------------------------------------------- /internal/cmd/delete/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/delete/delete_test.go -------------------------------------------------------------------------------- /internal/cmd/edit/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/edit/edit.go -------------------------------------------------------------------------------- /internal/cmd/edit/edit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/edit/edit_test.go -------------------------------------------------------------------------------- /internal/cmd/export/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/export/export.go -------------------------------------------------------------------------------- /internal/cmd/export/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/export/export_test.go -------------------------------------------------------------------------------- /internal/cmd/import/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/import/import.go -------------------------------------------------------------------------------- /internal/cmd/import/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/import/import_test.go -------------------------------------------------------------------------------- /internal/cmd/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/list/list.go -------------------------------------------------------------------------------- /internal/cmd/list/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/cmd/list/list_test.go -------------------------------------------------------------------------------- /internal/github/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/github/cli.go -------------------------------------------------------------------------------- /internal/github/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/github/client.go -------------------------------------------------------------------------------- /internal/github/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/github/client_test.go -------------------------------------------------------------------------------- /internal/github/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/github/labels.go -------------------------------------------------------------------------------- /internal/github/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/github/labels_test.go -------------------------------------------------------------------------------- /internal/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/options/options.go -------------------------------------------------------------------------------- /internal/options/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/options/options_test.go -------------------------------------------------------------------------------- /internal/utils/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/utils/colors.go -------------------------------------------------------------------------------- /internal/utils/colors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/utils/colors_test.go -------------------------------------------------------------------------------- /internal/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/utils/utils.go -------------------------------------------------------------------------------- /internal/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/internal/utils/utils_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heaths/gh-label/HEAD/main.go --------------------------------------------------------------------------------