From c7dd281f769b2cbe0927f263587d2d2549d3946b Mon Sep 17 00:00:00 2001 From: Jaisurya Nanduri <91620234+jaisnan@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:21:34 -0400 Subject: [PATCH] Add committee application guideline and committee TOML file (#32) 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 --- .github/pull_requests.toml | 13 +++++++++++++ doc/src/general-rules.md | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .github/pull_requests.toml diff --git a/.github/pull_requests.toml b/.github/pull_requests.toml new file mode 100644 index 0000000000000..12113728fc722 --- /dev/null +++ b/.github/pull_requests.toml @@ -0,0 +1,13 @@ +[committee] +members = [ + "celinval", + "rahulku", + "pnkfelix", + "adpaco-aws", + "feliperodri", + "zhassan-aws", + "remi-delmas-3000", + "qinheping", + "tautschnig", + "jaisnan" +] diff --git a/doc/src/general-rules.md b/doc/src/general-rules.md index 083227009d934..c681e9bb8953d 100644 --- a/doc/src/general-rules.md +++ b/doc/src/general-rules.md @@ -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" +] +```