Details
-
Technical task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
This is about the first part: creating the files.
Create 3 files (in UTF-8 format by default): maintainers, committers, reviewers.
Files are created as follows:
- Committers
gh api graphql --paginate -f query='query($endCursor: String) {organization(login: "MariaDB") {team(slug: "Developers") {members(first: 100, after: $endCursor) {nodes {loginnameurl}pageInfo {hasNextPageendCursor}}}}}' --jq '.data.organization.team.members.nodes[] | "* [\(.name // .login)](\(.url))"' - Maintainers:
cat ../maintainers.md | grep '[\ \t]*\* \[[^\]*\]\([^\)]*\)' | sort -u > maintainers.md
The lists are in the following format:
[:space:]*[<Human readable name>](https://github.com/<github login>)
|