0.4.6 • Published 7 years ago

mochiko v0.4.6

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

mochiko

An automated GitHub issues generator for new projects.

This tool helps teams bootstrap new GitHub repositories by generating a standard set of issues to track a project's progress.

The current set of issues is heavily influenced by the Humaan Website Checklist.

Installation

  1. Add mochiko to your project's development dependencies.

    yarn add mochiko --dev
  2. Add a script to your project's package.json.

    // package.json
    // ...
    
    "scripts": {
      // ...
      "mochiko": "mochiko",
      // ...
    },
    
    // ...

Usage

All calls to mochiko require a GitHub username and personal access token.

yarn mochiko -- -u <username> -t <personal_access_token>

Note: The following examples exclude the -u and -t parameters for conciseness, but they are required for all calls.

List all options

Use the --help flag to see all available options.

yarn mochiko -- --help

Dry runs

You may perform a "dry-run" to see what issues would be created without sending any create issue requests.

yarn mochiko -- --dry-run

Examples

  • Create all issues

    yarn mochiko
  • Create specific issues

    Provide a list of templates using -f:

    yarn mochiko -- -f 01-content 03-social

Creating new issues

Note: There is currently not a way to load custom issues. You can, however, explicitly define which issues are loaded (see above for an example).

Issues are created using Markdown files with relevant frontmatter.

Frontmatter options

KeyDescription
titleTitle of the issue.
labelsArray of labels to add to the issue.
assigneesArray of assignee usernames.
milestoneMilestone number to associate with the issue.

A standard mochiko label is created during script execution. It is not added to an issue by default, but including it is recommended.

0.4.6

7 years ago

0.4.5

7 years ago

0.4.4

7 years ago

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago