-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: update READMEs and add two scripts in package.json (#70)
Signed-off-by: Tierney Cyren <[email protected]>
- Loading branch information
Showing
4 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,9 @@ | |
"retro:twilio": "node utilities/retros/twilio.js", | ||
"retro:twilio-labs": "node utilities/retros/twilio-labs.js", | ||
"retro:twilio-samples": "node utilities/retros/twilio-samples.js", | ||
"retro:sendgrid": "node utilities/retros/sendgrid.js" | ||
"retro:sendgrid": "node utilities/retros/sendgrid.js", | ||
"updates:check": "npx npm-check-updates", | ||
"updates:apply": "npx npm-check-updates -u" | ||
}, | ||
"author": "Tierney Cyren <[email protected]> (https://twilio.com)", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
# Contributor Reports | ||
|
||
The contents of this directory are generated by a set of automation so we can better report on our open source repositories. | ||
The contents of this directory are generated by a set of automations so we can better report on our open source repositories. The automations can be found in the [GitHub Actions](../../.github/workflows) directory, and are all prefixed with `contributors-`. | ||
|
||
## How to Read Contributor Reports | ||
|
||
Contributor reports consist of a few distinct parts: | ||
|
||
- Metadata | ||
- Date range: The range of dates covered by the report. | ||
- Organiation: The GitHub organization that the report is for. | ||
- Total Contributors: The total number of contributors during the date range. | ||
- Total Contributions: The total number of contributions during the date range. | ||
- % New Contributors: The percentage of contributors who are new during the date range. | ||
- Data | ||
- Username: The GitHub username of the contributor. | ||
- Contribution Count: The number of contributions made by the contributor during the date range. | ||
- New Contributor: A boolean indicating if the contributor is new during the date range. | ||
- Commits: Link to per-repository commit list, scoped to the the specified date range. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Omnioculus Utilities | ||
|
||
This directory contains utilities that are used by Omnioculus. Here's a quick rundown of each utility: | ||
|
||
- `/contributors`: each of the files in this directory converts the output of the [`github/contributors`](https://github.com/github/contributors) action into a markdown format that we can submit a Pull Request for with the [`create-or-update-pull-request-action`](https://github.com/gr2m/create-or-update-pull-request-action) action. | ||
- `/helpers`: this directory contains a helper tool that converts the output from the OSPO GitHub Actions into a file so we can PR it, instead of creating an issue with it (as GitHub's team defaults to). | ||
- `/metrics`: each of the files in this directory converts the output of [`github/issue-metrics`](https://github.com/github/issue-metrics) action for one of the repositories we're tracking into a markdown format that we can submit a Pull Request for with the [`create-or-update-pull-request-action`](https://github.com/gr2m/create-or-update-pull-request-action) action. | ||
- `/retros`: each of the files in this directory creates a retro from the [`cutenode/retrogen`](https://github.com/github/contributors) library, outputting a markdown report. | ||
- `/watchtower`: scripts to convert watchtower reports from the [`github/stale-repo`](https://github.com/github/stale-repos) action for one of the repositories we're tracking into a markdown format that we can submit a Pull Request for with the [`create-or-update-pull-request-action`](https://github.com/gr2m/create-or-update-pull-request-action) action. |