Krypto

A neat little sidekick python script to create issues on your repo based on comments left in the code on your behalf

sample-use

Convert todo comments in your code

# TODO: Make config file
# Sometimes you might wanna have TODOs in your tests.
# Right now krypto will completely ignore any file with the
# substring "test" in the path. I would want to be able to
# configure this behaviour.

to GitHub issues on the repository you're working on!

issue-on-github

Env Variables

For this to work you need to have a github token in your environment variables.
To acquire a token navigate to Developer Settings and generate one.

With the token in hand, simply,

export TOKEN_GITHUB = token_here

or

$env:TOKEN_GITHUB = token_here

If you want the token to persist across sessions you need to add it to your .bashrc or $PROFILE.

Usage

Write a TODO

First, create a TODO in the form of a block comment.
The TODO must contain a title. Body and labels are optional.

Examples:

  • Title only, no body or labels

    # TODO: This is a title
    
  • Title, body, no labels

    # TODO: This is a title
    # This is in the TODO body
    
  • Title, body and labels

    # TODO[Enhancement]: This is a title
    # This is in the TODO body
    
  • Multiple labels

    # TODO[Enhancement, Bug, Documentation]: This is a title
    

Valid separators include , / # ~ \

To run

Pass the directory to look in for TODOs.

krypto <path-to-dir>

Krypto does not look in tests/ at the moment.


GitHub Action

This action runs Krypto on your code and creates issues on the repo on your behalf

Inputs

dir

Required The path to the directory to scan for TODOs

Env

TOKEN_GITHUB

Required A personal access token for github to use to authenticate the creation of issues on your repository

Example usage

uses: antoniouaa/krypto@v1
with:
  dir: "."
env:
  TOKEN_GITHUB: ${{ secrets.GITHUB_TOKEN }}

Inspired by tsoding/snitch

GitHub

https://github.com/antoniouaa/krypto