New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

chincol

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chincol

A CLI tool to create GitHub issues from CSV

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Chincol

License: GPL v3

A simple CLI tool to create GitHub issues from a CSV file using the GitHub CLI (gh).
This tool imports issues defined in a CSV file into a GitHub repository. It also ensures that required labels exist (creating them if missing).

Features

  • Reads a CSV file with columns: title, body, and labels
  • Uses the GitHub CLI to create issues in a specified repository
  • Checks for and creates missing labels automatically
  • Uses Ora for progress spinners and emoticons for log output

Prerequisites

  • Node.js (v14 or above recommended)
  • GitHub CLI (gh) installed and authenticated (run gh auth login)
  • An existing GitHub repository where issues will be created

Installation

npm install -g chincol

Usage

  • Create a CSV file named issues.csv with the following columns:
    • title: The issue title
    • body: The issue description
    • labels: Comma-separated labels

Example issues.csv:

title,body,labels
"Bug Report","This needs to be fixed","bug,urgent"
"Feature Request","Add new feature","enhancement"
  • Run the tool:
chincol --repo "username/repository"

Options

--repo: GitHub repository in format "username/repository" --file: Path to CSV file (default: "./issues.csv")

From Source

Clone the repository and install dependencies:

git clone <your-repository-url>
cd <your-repository-folder>
npm install

git remote add origin

Keywords

github

FAQs

Package last updated on 09 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts