Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ezissue-br

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezissue-br

The ultimate aid in the issue creation process.

  • 1.0.0
  • PyPI
  • Socket score

Maintainers
1

EZIssue

## Table of contents

[TOC]

What does it do?

The ezissue cli is an application with command line interface which it's main objective is to help you in the issue creation process in your projects.

It takes a file with a markdown table with your issues, formats them and send them to your repo's API. Therefore you will no longer spend hours creating issues manually.

Why should I use this?

If you find that the issue creation process is painfull and it breaks your full-loko mood while developing something, this is for you.

But if you want to spend hours creating issues on Github or Gitlab and find it fun (I sincerely doubt it), who am I to tell you what to do!

Usage and configuration

CLI interface

This program has a CLI that you can take advantage of. Running ezissue --help will show you the usage and options for the CLI.

$ ezissue --help

  Usage: ezissue [OPTIONS] FILENAME [github|gitlab]

  Options:
    --subid TEXT
    --numerate BOOLEAN
    --prefix [US|TS||BUG]
    --help                 Show this message and exit.

Markdown file and configuration

The EZIssue program takes a .md file as argument. That file must have a markdown table for it to parse to issues. That table is a common md table and can have the following headers: (Note that headers with * are mandatory)

Header nameDescriptionGithub supportGitlab support
Title*Issue’s titleYY
DescriptionIssue’s body or descriptionYY
TasksWill be a list of checkboxes. Items must be separated with commas.Y (goes with description)Y (goes with description)
Acceptance criteriaWill be a list of checkboxes. Items must be separated with commas.Y (goes with description)Y (goes with description)
AssigneeUser that is assigned to the issueY (assignee’s username)N (see next row)
AssigneesList of users assigned to the issueY (array of assignee’s usernames)Y (is a array of user ids)
LabelsList of labels that are to be applied to the issueY (array of strings)Y (single string, separated by commas)
ConfidentialToggles the confidentiality of the issueNY (boolean value)
MilestoneAdds a milestone to the issueY (number of milestone)Y (milestone id)
DueSets a due date for stressing out your teamNY (datetime string in format YYYY-MM-DD)
DiscussionLinks the issue to a discussion threadNY (id of the discussion that it solves. Fills the description automatically)
WeightSets the issue’s weight. Best used in XPNY (integer with the issue’s weight, must be bigger than zero)

Examples:

The issue output format is the following:

 <!-- issue-table.md -->
 | title | description | acceptance criteria |
 | ----- | ----------- | ------------------- |
 | issue title | brief description | condition a;condition b;condition c |
  <!--title-->
  <PREFIX><SUBID><NUMBER> issue title
  <!--body-->
  **Issue description:**
  ---
  brief description

  **Acceptance criteria:**
  ---
  - [ ] condition a
  - [ ] condition b
  - [ ] condition c

Updating your current version

If you already have one of our pip releases installed in your machine and want to update to the latest version, use the command:

$ pip3 install --upgrade ezissue

Want to make a contribuition? Here are some quick stuff you can work on!

I want to thank you beforehand for your contribuition. Here you can find some quick fixes that you can look into. :)

Keywords

FAQs


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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc