Skip to content

Commit

Permalink
Add committee application guideline and committee TOML file (#32)
Browse files Browse the repository at this point in the history
This PR adds 

1. An empty committee `toml` file as a cache that will be used by the CI
workflow to check if the approvers belong to the committee.
2. Some simple guidelines for users to apply to become a part of the
committee.

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 and MIT licenses.

---------

Co-authored-by: Felipe R. Monteiro <[email protected]>
  • Loading branch information
jaisnan and feliperodri authored Jul 3, 2024
1 parent df109da commit c7dd281
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/pull_requests.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[committee]
members = [
"celinval",
"rahulku",
"pnkfelix",
"adpaco-aws",
"feliperodri",
"zhassan-aws",
"remi-delmas-3000",
"qinheping",
"tautschnig",
"jaisnan"
]
12 changes: 12 additions & 0 deletions doc/src/general-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,15 @@ Solutions must be automated using one of the tools previously approved and liste
I.e., the action may no longer pass after an update.
This will not impact the approval status of the tool, however,
new solutions that want to employ the tool may need to ensure the action is passing first.

## Committee Applications

You can apply to be part of the committee by submitting a pull request that adds your GitHub login name to the `pull_request.toml` file.

For example, if your user login is @rahulku, add the login without @ to the committee member's list,
```
[committee]
members = [
+ "rahulku"
]
```

0 comments on commit c7dd281

Please sign in to comment.