-
-
Couldn't load subscription status.
- Fork 0
Add Initial Gem.coop Governance #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 6 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
728f0a0
Add Initial Gem.coop Governance
MikeMcQuaid 6fec2ae
Maintainer-Guidelines: fix typo.
MikeMcQuaid a713333
New-Maintainer-Checklist: fix typo.
MikeMcQuaid 3ce9b8c
New-Maintainer-Checklist: add Oxford comma.
MikeMcQuaid 984e056
Gem.coop-Governance: add text chat option for accessibility.
MikeMcQuaid e53e32e
Gem.coop-Governance: adjust AGM wording, allow accessible text chat.
MikeMcQuaid 823ba98
Gem.coop-Governance: note GitHub organization.
MikeMcQuaid 5c631f9
Bootstrapping-Gem.coop-Governance: expand PLC acronym.
MikeMcQuaid 8e8065a
Gem.coop-Governance: one week for new maintainer approval.
MikeMcQuaid e16ecd7
Gem.coop-Leadership-Responsibilities: allow virtual AGM.
MikeMcQuaid c3e310f
vale/Terms: fix RubyGems styling.
MikeMcQuaid 4638e29
Remove unnecessary documents, adjust moderators.
MikeMcQuaid df8e397
workflows/governance: adjust triggers.
MikeMcQuaid 747f73a
Gem.coop-Governance: prioritise meeting time accessibility.
MikeMcQuaid aeaf167
Gem.coop-Governance: clarify privilege abuse can result in removal.
MikeMcQuaid fa1e1cb
Update Slack, remove 1Password references.
MikeMcQuaid 9f090c3
Gem.coop-Governance: allow smaller TSC.
MikeMcQuaid 9c7e962
Gem.coop-Governance: note owner backup model.
MikeMcQuaid 8d9c3f8
Gem.coop-Governance: clarify inactivity.
MikeMcQuaid ba4049b
Gem.coop-Governance.md: clarify numbers.
MikeMcQuaid 570f35a
Gem.coop-Governance: state how general meeting is called.
MikeMcQuaid ebc660e
Gem.coop-Governance: clarify wording, remove PLC Owner.
MikeMcQuaid b46f033
Gem.coop-Governance: clarify majority/supermajority wording, PLC numb…
MikeMcQuaid c901e61
Apply (formatting) suggestion from @duckinator
martinemde 99bf37d
Apply suggestion from @duckinator
martinemde 63f70df
Apply suggestion from @duckinator
martinemde 541f0c5
Apply grammar fix from @duckinator
martinemde b2d2b2c
Merge branch 'governance' into martinemde/mostly-formatting-and-clari…
MikeMcQuaid 43ab57f
Merge pull request #2 from gem-coop/martinemde/mostly-formatting-and-…
MikeMcQuaid abe6535
Gem.coop-Governance: clarify general meetings.
MikeMcQuaid c647d01
Gem.coop-Governance: clarify AGM video call.
MikeMcQuaid 1ad98c0
New-Maintainer-Checklist: private Slack channel.
MikeMcQuaid 2330667
Gem.coop-Governance: clarify wording.
MikeMcQuaid c40eb07
Gem.coop-Governance: fix employee counts.
MikeMcQuaid 052776a
Gem.coop-Governance: VSCode autoformatting.
MikeMcQuaid 4098323
Restructure and reorder sections
deivid-rodriguez bcade44
Tweaks the general meetings
deivid-rodriguez 1945f04
Move AGM notice to the General Meetings section
deivid-rodriguez dfc6f51
Move "Questions to the PLC" article to the PLC section
deivid-rodriguez 83f676e
Gem.coop-Governance: two other maintainers.
MikeMcQuaid 554efa7
Merge pull request #3 from gem-coop/governance-tweaks
MikeMcQuaid 29438a4
Gem.coop-Governance: clarify PL reelection.
MikeMcQuaid 047e928
Gem.coop-Governance: clarify majority vote.
MikeMcQuaid 5b1817c
Bootstrapping-Gem.coop-Governance: change plan.
MikeMcQuaid 1747bba
README: note initial guidance.
MikeMcQuaid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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,16 @@ | ||
| version: 2 | ||
| multi-ecosystem-groups: | ||
| all: | ||
| schedule: | ||
| interval: weekly | ||
| day: friday | ||
| time: "08:00" | ||
| timezone: Etc/UTC | ||
| updates: | ||
| - package-ecosystem: github-actions | ||
| directory: "/" | ||
| multi-ecosystem-group: all | ||
| patterns: | ||
| - "*" | ||
| allow: | ||
| - dependency-type: all |
This file contains hidden or 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,40 @@ | ||
| name: Governance | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| - governance | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| defaults: | ||
| run: | ||
| shell: bash -xeuo pipefail {0} | ||
|
|
||
| jobs: | ||
| governance: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Set up Homebrew | ||
| id: set-up-homebrew | ||
| uses: Homebrew/actions/setup-homebrew@main | ||
| with: | ||
| core: false | ||
| cask: false | ||
|
|
||
| - name: Checkout repository | ||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - name: Install vale and markdownlint-cli | ||
| run: brew install vale markdownlint-cli | ||
|
|
||
| - name: Run Vale | ||
| run: vale . | ||
|
|
||
| - name: Run MarkdownLint | ||
| run: markdownlint . |
This file contains hidden or 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,2 @@ | ||
| default: true | ||
| MD013: false |
This file contains hidden or 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,17 @@ | ||
| --- | ||
| extends: substitution | ||
| message: Use '%s' instead of '%s'. | ||
| ignorecase: false | ||
| level: error | ||
| nonword: true | ||
| swap: | ||
| '\beg\b': e.g. | ||
| '\bie\b': i.e. | ||
| 'e\.g\.,': e.g. | ||
| 'i\.e\.,': i.e. | ||
| '(?<!^\{.*|\.|<)\borg\b': organisation | ||
| '(?<!^\{.*)\borgs\b': organisations | ||
| '(?<!^\{.*|<|\{#)\brepo\b': repository | ||
| '(?<!^\{.*)\brepos\b': repositories | ||
| '\bivar\b': instance variable | ||
| '\bivars\b': instance variables |
This file contains hidden or 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,14 @@ | ||
| --- | ||
| extends: existence | ||
| message: Avoid gender-specific language when not necessary. | ||
| level: error | ||
| ignorecase: true | ||
| tokens: | ||
| - him | ||
| - her | ||
| - she | ||
| - he | ||
| - his | ||
| - hers | ||
| - himself | ||
| - herself |
This file contains hidden or 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,8 @@ | ||
| --- | ||
| extends: existence | ||
| message: "'%s' should have one space." | ||
| level: error | ||
| nonword: true | ||
| tokens: | ||
| - '(?<!^\{.*)[a-z][.?!][A-Z]' # FIXME: https://github.com/errata-ai/vale/issues/818 | ||
| - '[.?!] {2,}[A-Z]' |
This file contains hidden or 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 @@ | ||
| --- | ||
| extends: substitution | ||
| message: Use '%s' instead of '%s'. | ||
| level: error | ||
| scope: paragraph | ||
|
|
||
| swap: | ||
| Rubocop: RuboCop | ||
| '(?<!^\{.*|^!/.*)ruby': Ruby # FIXME: https://github.com/errata-ai/vale/issues/818 | ||
This file contains hidden or 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,8 @@ | ||
| extends: capitalization | ||
| message: "'%s' should be in title case" | ||
| level: error | ||
| scope: heading.h1 | ||
| match: $title | ||
| style: AP | ||
| exceptions: | ||
| - macOS |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| extends: existence | ||
| message: 'No "TM", ™, SM, ©, ®, or other explicit indicators of rights ownership or trademarks' | ||
| level: error | ||
| nonword: true | ||
| tokens: | ||
| - \bTM\b | ||
| - ™ | ||
| - \bSM\b | ||
| - © | ||
| - ® |
This file contains hidden or 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,7 @@ | ||
| StylesPath = .vale-styles | ||
|
|
||
| [formats] | ||
| rb = md | ||
|
|
||
| [*.{md,rb}] | ||
| BasedOnStyles = Gem.coop |
This file contains hidden or 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,19 @@ | ||
| # Bootstrapping Gem.coop Governance | ||
|
|
||
| At the time of writing, there is not yet any formal governance of the Gem.coop project. | ||
|
|
||
| These are the steps that will be followed to bootstrap this governance process | ||
|
|
||
| - Martin Emde gives Mike McQuaid write access to <https://github.com/gem-coop/governance> | ||
| - Mike McQuaid commits to `main` the `README.md` file for this repository | ||
| - Mike McQuaid opens a pull request adding all other files to this repository | ||
| - A subset of existing RubyGems maintainers will be added to the `gem-coop` GitHub organisation to discuss the governance pull request(s) | ||
| - These maintainers can propose their own pull requests to files | ||
| - Candidates for the Project Leader and Project Leadership Committee will put their names forward for election | ||
simi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - Everyone with RubyGems maintainer contributions in the last year (<https://mikemcquaid.com/rubygems-contribution-data-with-homebrews-tooling/> will be given a vote | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - Mike McQuaid will setup the voting using OpaVote, tally and announce the results | ||
| - When a Project Leader and Project Leadership Committee have been appointed, they will in turn appoint the maintainers and, from them, the Technical Steering Committee | ||
| - Everyone who voted will be made a Member and granted a vote in the following year | ||
| - Everyone else will be removed from the GitHub Organisation | ||
| - The Gem.coop governance documents will apply from this point | ||
| - Mike McQuaid will leave the GitHub organisation and pass over all access to the PLC | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or 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 @@ | ||
| *.md @gem-coop/plc |
This file contains hidden or 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,162 @@ | ||
| # Gem.coop Governance | ||
|
|
||
| ## 1. Definitions | ||
|
|
||
| - The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC 2119](https://www.ietf.org/rfc/rfc2119.txt). | ||
| - PLC: Project Leadership Committee | ||
| - TSC: Technical Steering Committee | ||
| - AGM: Annual General Meeting | ||
| - An ordinary resolution requires a majority of the votes cast. | ||
| - A special resolution requires a two-thirds supermajority of the votes cast. | ||
| - Primary repositories: the most important repositories in the Gem.coop organisation: | ||
| - [gem-coop/todo](https://github.com/gem-coop/todo) ([contributions](https://github.com/gem-coop/todo/graphs/contributors)) | ||
| - ? | ||
|
|
||
| ## 2. Members | ||
|
|
||
| 1. New members (unless nominated as maintainers, see below) will be admitted by an ordinary resolution of the PLC and added to the `gem-coop` organisation on GitHub. | ||
|
|
||
| 1. Members are expected to remain active within Gem.coop. Members who are not active maintainers or active committee members must affirm their continued interest in Gem.coop membership annually by voting on annual measures, even if voting abstention. Inactive, non-affirmed, non-voting members will be removed within 14 days after the annual meeting unless excused by the PLC. | ||
|
|
||
| 1. A member may be removed from Gem.coop by an ordinary resolution of the PLC. A removed member may be reinstated by the usual admission process. | ||
|
|
||
| 1. All members will follow the [Gem.coop's Code of Conduct](https://github.com/gem-coop/.github/blob/HEAD/CODE_OF_CONDUCT.md). Changes to the code of conduct must be approved by the PLC. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. Members should abstain from voting when they have a conflict of interest not shared by other members. No one may be compelled to abstain from voting. | ||
|
|
||
| ## 3. General Meetings of Members | ||
|
|
||
| 1. A general meeting of the members may be called by either an ordinary resolution of the PLC or a majority of the entire membership. The membership must be given at least three weeks' notice of a general meeting. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| The Annual General Meeting may be conducted in person and may provide online video conferencing for those unable to attend. Other general meetings should be an online video conference. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. The quorum to vote on resolutions and elections at a general meeting is 3 voting members or 10% of the voting members, whichever is greater. | ||
| A general meeting with no business except voting should be asynchronous. | ||
| Otherwise, it must be a synchronous online video conference or text chat. | ||
| The voting will occur using an online voting system chosen by the PLC. | ||
| The voting period closes after one week or after the outcome of the vote would not be changed by any subsequent votes. | ||
| If a synchronous meeting is happening, the meeting must occur before the votes can be tallied. | ||
|
|
||
| 1. Gem.coop members will meet at the annual general meeting (AGM) in a manner determined by the PLC. | ||
|
|
||
| 1. Elections will be held at the AGM. | ||
|
|
||
| 1. The PLC will announce candidates and proposals three weeks prior to the election date. | ||
|
|
||
| 1. Members should cast their vote any time up to three weeks prior to the election date. | ||
|
|
||
| ### 3.1. Amendments to these bylaws | ||
|
|
||
| 1. These bylaws must only be amended by a special resolution at a general meeting of the members. | ||
|
|
||
| 1. Any member may propose an amendment via pull request on GitHub against this document. Proposed amendments may be merged for consideration in aggregate with other amendments once more than half of the PLC has approved the pull request. | ||
|
|
||
| 1. Members must vote on any amendments. All votes will be tallied. | ||
| Voting will open for three weeks once one or more amendment proposals are accepted unless the AGM is within one month, in which case the proposed amendments will be voted on at the same time as elections. | ||
|
|
||
| 1. Any approved amendments will take effect three weeks after the close of voting. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## 4. Project Leadership Committee | ||
|
|
||
| 1. The financial administration of Gem.coop, organisation of the AGM, enforcement of the code of conduct and removal of members are performed by the PLC. The PLC will represent Gem.coop in all dealings with Open Collective. | ||
martinemde marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| 1. The PLC consists of five members, one of whom is the Project Leader. The other committee members are elected by Gem.coop members in a [Meek Single Transferable Vote](https://en.wikipedia.org/wiki/Counting_single_transferable_votes#Meek's_method) election using the Droop quota. Each PLC member will serve a term of two years or until the member's successor is elected. Any sudden vacancy in the PLC will be filled by the usual procedure for electing PLC members at the next general meeting, typically the next AGM. | ||
|
|
||
| 1. When a PLC seat is up for election or is vacant, any member may become a candidate for the PLC by providing a brief statement in the `#members` channel in Gem.coop's Slack expressing relevant experience and intentions if elected no later than three weeks before the AGM. The PLC will maintain the candidate list until ballots are sent out one week before the AGM, during which time members should cast their votes. Candidates should deliver remarks in writing or verbally before or during the AGM but votes already cast are not changeable. The current PLC should vote on and publish a statement recommending their preferred candidates within the three-week period between the candidate deadline and the AGM. | ||
|
|
||
| 1. The PLC must report all minutes, participants in discussions and breakdowns of any votes cast to Gem.coop members in the gem-coop/governance GitHub repository no later than one week after the action has been taken. At the AGM, the PLC must present a summary of their activities and decisions since the last AGM. Financial statements can be viewed by anyone on the internet on [Gem.coop's OpenCollective](https://opencollective.com/gem-coop). | ||
|
|
||
| 1. No more than two employees of the same employer may serve on the PLC. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. A member of the PLC must only be removed from the PLC by a special resolution of the membership. | ||
|
|
||
| 1. All members of the PLC will be “billing managers” and "moderators" of the GitHub organisation and any related resources (e.g. Slack, 1Password where possible). | ||
|
|
||
| 1. One member of the PLC other than the PL will have an `Owner` role in the GitHub organization and any related resources. The PLC will choose this person, with preference given to any PLC members who are current Gem.coop maintainers. If no PLC members are Gem.coop maintainers, any PLC member qualifies for the `Owner` role. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## 5. Meetings of the Project Leadership Committee | ||
|
|
||
| 1. All members of the PLC must meet at the AGM at least once per year. This will ideally be in person, on a synchronous video call. For accessibility a synchronous text chat option should be available. The AGM date must be given with at least two months' advance notice. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. The quorum to vote on resolutions of the PLC is a majority of its members. In an electronic vote, a voting period of one week replaces the quorum requirement. Any approved resolution will take effect immediately. | ||
|
|
||
| 1. A majority of the entire membership of the PLC is required to pass an ordinary resolution. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. The PLC will annually review the status of all members and remove members who did not vote in the AGM and then did not re-affirm a commitment to Gem.coop. Voting in the AGM confirms that a member wishes to remain active with the project. After the AGM, the PLC will ask the members who did not vote whether they wish to remain active with the project. The PLC removes any members who don't respond to this second request after three weeks. | ||
|
|
||
| 1. The PLC will appoint the members of the TSC. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. Any member may refer any financial questions, AGM questions or code of conduct violations to the PLC. All technical matters must instead be referred to the Project Leader and technical disputes to the TSC. Members will make a good faith effort to resolve any disputes with compromise prior to referral to the PLC, Project Leader or TSC. | ||
|
|
||
| ## 6. Project Leader | ||
|
|
||
| 1. The Project Leader will represent Gem.coop publicly, manage all day-to-day technical decisions, and resolve disputes related to the operation of Gem.coop between maintainers, members, other contributors, and users. | ||
|
|
||
| 1. The Project Leader will be elected every two years by Gem.coop members in a [Schulze Condorcet method](https://en.wikipedia.org/wiki/Schulze_method) (aka 'beatpath') election. The PLC will nominate at least one candidate for Project Leader. Any member may nominate a candidate, or self-nominate. Nominations must be announced to the membership three weeks before the AGM. | ||
|
|
||
| 1. Any vacancy of the Project Leader will be filled by appointment of the PLC. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. A technical decision of the Project Leader may be overruled by an ordinary resolution of the TSC. | ||
|
|
||
| 1. A non-technical decision of the Project Leader may be overruled by an ordinary resolution of the PLC. | ||
|
|
||
| 1. The Project Leader must only be removed from the position by a special resolution of the membership. | ||
|
|
||
| 1. The Project Leader must be included in all PLC communications with or about Open Collective and in all communications related to joint responsibilities. | ||
|
|
||
| 1. The Project Leader must be a maintainer, not just a member. | ||
|
|
||
| 1. The Project Leader will be an "Owner" of the Gem.coop organization, Slack, 1Password and any related resources. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## 7. Technical Steering Committee | ||
|
|
||
| 1. The TSC has the authority to decide on any technical disputes between any maintainer and the Project Leader. Disputes not involving the Project Leader must be addressed through the Project Leader. | ||
|
|
||
| 1. The PL is one member of the TSC. The PLC will appoint between three and five maintainers to be members of the TSC. PLC members should not be any of these appointees. Appointed TSC members will serve a term of one year or until the member's successor is appointed. | ||
|
|
||
| 1. Any member may refer any technical question or dispute to the TSC. Members will make a good faith effort to resolve any disputes with compromise prior to referral to the TSC. | ||
|
|
||
| 1. No more than two employees of the same employer may serve on the TSC. | ||
|
|
||
| 1. A member of the TSC, except the Project Leader, must only be removed from the TSC by an ordinary resolution of the PLC. | ||
|
|
||
| 1. All members of the TSC will be "moderators" of the GitHub organisation. | ||
|
|
||
| 1. One member of the TSC (not the PL) will be an "Owner" of the GitHub organisation, Slack, 1Password and any related resources. | ||
|
|
||
| ## 8. Maintainers | ||
|
|
||
| 1. All maintainers are automatically members. Some, not all, members are maintainers. | ||
|
|
||
| 1. Maintainers are members with commit/write-access to at least one primary repository. | ||
|
|
||
| 1. New maintainers can be nominated by any existing maintainer. To become a maintainer, a nomination requires approval from one of the PL or any member of the TSC with no opposition from any of these people within a 24-hour period, excluding 19:00 UTC on Friday until 19:00 UTC on the following Monday. If there is opposition, the TSC must vote on the nomination in the #tsc private Gem.coop Slack channel, with the vote closing after one week or after the outcome of the vote would not be changed by any subsequent votes (such as when a majority of the TSC has voted in favour or against). The nomination will succeed by a simple majority vote of the votes cast. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. In accordance with Gem.coop's organisational security posture, which requires operating under the principle of least privilege, the PL will review maintainers' write/commit access no later than six weeks before the AGM. The PL will remove maintainer privileges from those who have not consistently met these criteria: | ||
|
|
||
| - having more contributions to primary repositories than the majority of non-maintainer contributors in at least one of these repositories | ||
| - reviewing and merging of PRs of other maintainers and contributors in primary repositories | ||
| - the PL will exclude from consideration non-essential pull requests submitted and merged by the same person | ||
| - reviewing any direct GitHub review requests in any repository in the Gem.coop organisation | ||
| - responding to direct mentions on GitHub and direct mentions in Slack from the PL and other maintainers | ||
| - maintaining a positive working relationship with the PL and other maintainers | ||
| - engaging actively to resolve conflict with the PL or other maintainers, with a neutral intermediary upon request | ||
|
|
||
| Maintainers who do not fulfil these requirements will be removed as a maintainer but may remain a member if they wish. | ||
|
|
||
| The PL will not consider the following activities because they do not require commit or write access on security-critical repositories: | ||
|
|
||
| - contributions to the wider Gem.coop organisation, repositories excluding the main, security-critical repositories, or the greater Gem.coop ecosystem | ||
| - contributions in previous years as a maintainer or contributor | ||
| - contributions to the governance documents, the PLC, social media, Gem.coop's discussion forum, etc. | ||
|
|
||
| If a maintainer wishes to appeal their removal, they may request a TSC review of the decision. This appeal must be lodged within 72 hours of removal. | ||
| The appellant will confirm their intent to address any unfulfilled criteria which caused the removal. | ||
| The TSC will review the decision within one week. | ||
| A member of the TSC, who is not the PL, will respond immediately upon upholding or reversing the decision. | ||
| The PL will restore access as soon as is feasible if the TSC votes to reverse the removal. | ||
| If the TSC or PL feels that the maintainer has not made sufficient progress on the criteria for any reversed removal, | ||
| they may request a second TSC review no sooner than 30 days after the initial reversal. | ||
| The TSC or PL may request a review in the event of noticeable no communication inactivity or unresponsiveness. | ||
MikeMcQuaid marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| The TSC will consider appeals no more than once per quarter per maintainer until the next AGM. | ||
|
|
||
| In emergency situations, including but not limited to malicious commits, suspicious activity, abuse of resources, or any action or activity that could harm the security posture of the Gem.coop codebase, systems, or organisation, the PL or anyone with the capability to remove privileges should remove any or all of a maintainer's access rights (e.g. to GitHub, Slack, 1Password, etc.). Upon doing so, they must inform the PLC and the TSC. The PLC will discuss the situation. The TSC will review the removal of any maintainer removed under this clause within two weeks and instruct the PL to restore the maintainer's privileges only if the situation is resolved. This is considered to be the maintainer removal appeal process, as mentioned above. The TSC will document the situation in an incident report to be shared with members and recommend changes to security settings, maintainer policy, this governance document or any additional measures required to prevent the situation from occurring again. | ||
duckinator marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.