0.0.2 • Published 4 years ago
@retrogen/generate v0.0.2
@retrogen/generate
A tool that generates Markdown retros for GitHub users and organizaations. This is the all-in-one solution for retrogen that incorporates both the @retrogen/core and @retrogen/templates modules.
Prerequisites
To run this project, it's assumed that you have a GitHub Personal Access Token configured in your environment under the GITHUB_TOKEN environment variable. You can either do this manually, automatically with your own tooling, or by adding an appropriately configured .env file to your project.
Usage
// source: ./examples/default.js
const generate = require('@retrogen/generate')
async function markdown () {
// the date range we want to get information for
const dates = {
start: '2022-03-27',
end: '2022-04-02'
}
// this will generate markdown for the Node.js GitHub organization that includes data for Issues, PRs, and Discussions from 2022-03-27 to 2022-04-02
await generate('nodejs', dates, { log: true })
}
markdown()API
Assuming you've required this module as generate:
ownerString (required): The GitHub name of the owner of the repository. This can be a user or an organization.datesObject (required):startString (required): The start date of the query we'll send to GitHub. Should be formatted asYYYY-MM-DD.- Example:
'2022-01-01'
- Example:
endString (required): The end date of the query we'll send to GitHub.Should be formatted asYYYY-MM-DD.- Example:
'2022-01-31'
- Example:
optionsObject (optional):sortString (optional): The sort order of the query we'll send to GitHub. You can find the valid options on GitHub's Docs.- Examples:
stars,interactions,updated - Default:
'updated'
- Examples:
per_pageNumber (optional): The number of results to return per page.- Default:
100
- Default:
headingString (optional): the heading to use for the output Markdown.- Default:
# Retrospective for ${data.meta.owner}.
- Default:
prefaceString (optional): the preface to use for the output Markdown.- Default:
Reporting on ${data.meta.issues.count} Issues from ${data.meta.issues.authors.count} authors, ${data.meta.pullRequests.count} Pull Requests from ${data.meta.pullRequests.authors.count} authors, and ${data.meta.discussions.count} Discussions from ${data.meta.discussions.authors.count} authors..
- Default:
headerDatesBoolean (optional): Boolean that tells the template whether to include the dates in the headings if bothoptions.startandoptions.endhave non-undefined values.- Default:
false.
- Default:
The goal with these API docs is to have a consistent style of documentation for each module in the monorepo. If there's inconsistencies, please feel free to open an issue to let the maintainers know.