prestashop/traces

A simple CLI tool to generate information about GitHub contributors of a repository

Installs: 3 385

Dependents: 0

Suggesters: 0

Security: 0

Stars: 7

Watchers: 12

Forks: 11

Open Issues: 3

Type:project

v5.2.4 2022-11-04 11:29 UTC

This package is auto-updated.

Last update: 2024-03-25 14:11:24 UTC


README

Traces is a micro CLI application that is able to get all contributors and their contributions in "developer-readable" JSON format for a specified repository.

Installation

The authentication is a basic login/password for GitHub.

Note: If your Github login uses two-factor authentication, use an API token instead of password

 $ composer require prestashop/traces
 
 # Check a repository
 $ ./vendor/bin/traces -u <login> -p <password> -r <repositoryOwner/repositoryName> --config="config.yml"
 
 # Check an organization
 $ ./vendor/bin/traces -u <login> -p <password> -o <repositoryOwner> --config="config.yml"

A file named contributors.js will be generated, you can manipulate it using any programming language.

Configuring

There are a number of settings that can be configured via the config file. Take a look at the config.dist.yml file for an example.

Option Description
exclusions List of excluded users.
keepExcludedUsers Set to true to flag excluded contributors instead of filtering them out from the output.
fieldsWhitelist List of fields to keep from the API result. Leave blank if you want to keep them all.
extractEmailDomain Set to true to extract the user's email domain and include it in the generated file

License

This project is released under the MIT license.