Skip to content

Commit

Permalink
ci: Pick random reviewers from committer list (#4001)
Browse files Browse the repository at this point in the history
* ci: Pick random reviewers from committer list

Signed-off-by: Xuanwo <[email protected]>

* Test

Signed-off-by: Xuanwo <[email protected]>

* Fix typo

Signed-off-by: Xuanwo <[email protected]>

* Fix typo

Signed-off-by: Xuanwo <[email protected]>

* FIx

Signed-off-by: Xuanwo <[email protected]>

* Polish

Signed-off-by: Xuanwo <[email protected]>

---------

Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo authored Jan 17, 2024
1 parent b2c59eb commit 746cf43
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@
/bindings/nodejs/ @suyanhanx
/bindings/python/ @messense @Zheaoli
/bindings/ruby/ @PsiACE

# This is a place holder for all committers who what to join the review of not owned code.
#
# More details could be found at <https://github.com/apache/incubator-opendal/issues/3967>
COMMITTERS_PLACEHOLDER @Xuanwo @Ji-Xinyou @morristai @dqhl76 @ClSlaid @Young-Flash @G-XD @oowl @silver-ymz
67 changes: 67 additions & 0 deletions .github/scripts/assign_reviewers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

async function run(github, context, core, fs) {
try {
// Pick two reviewers from list
const numberOfReviewers = 2;
const repo = context.repo;

// Read CODEOWNERS
const codeownersContent = fs.readFileSync('.github/CODEOWNERS', 'utf8');
const lines = codeownersContent.split('\n');

// Search COMMITTERS
const placeholderLine = lines.find(line => line.startsWith('COMMITTERS_PLACEHOLDER'));
if (!placeholderLine) {
throw new Error("No COMMITTERS found in CODEOWNERS");
}

// Extract committers from placeholder line
const committers = placeholderLine.match(/@[\w-]+/g).map(u => u.substring(1));
if (committers.length === 0) {
throw new Error("No committer found in COMMITTERS_PLACEHOLDER");
}

// Pick reviewers
const selectedReviewers = [];
while (selectedReviewers.length < numberOfReviewers && committers.length > 0) {
const randomIndex = Math.floor(Math.random() * committers.length);
selectedReviewers.push(committers.splice(randomIndex, 1)[0]);
}

// Assign reviewers Pull Request
if (context.payload.pull_request) {
const pullRequestNumber = context.payload.pull_request.number;
await github.rest.pulls.requestReviewers({
owner: repo.owner,
repo: repo.repo,
pull_number: pullRequestNumber,
reviewers: selectedReviewers,
});
console.log(`Assigned reviewers: ${selectedReviewers.join(', ')}`);
}
} catch (error) {
core.setFailed(`Action failed with error: ${error}`);
}
}

module.exports = ({github, context, core, fs}) => {
return run(github, context, core, fs)
}
38 changes: 38 additions & 0 deletions .github/workflows/ci_review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

name: Assign Reviewers

on:
pull_request_target:
types: [opened, reopened]

jobs:
assign-reviewers:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Assign Reviewers
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const script = require('.github/scripts/assign_reviewers.js')
script({github, context, core, fs})
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 746cf43

Please sign in to comment.